// JavaScript Document

function textResize()
{
        document.body.style.fontSize = '0.7em';
        document.getElementById('increase').onclick = function()
        {
                var textSize = 
parseFloat(document.body.style.fontSize.replace('em', ''));
                
                if (textSize < 1.4) {
                  textSize += 0.15;
                  document.body.style.fontSize = textSize + 'em';
                }
        }
        document.getElementById('decrease').onclick = function()
        {
                var textSize = 
parseFloat(document.body.style.fontSize.replace('em', ''));
		if (textSize > 0.6) {
                  textSize -= 0.15;
                  document.body.style.fontSize = textSize + 'em';
                }
        }
}

window.onload = textResize;