var  currentFontSize=1;

function changeFontSize(sizeDifference){
	currentFontSize = parseInt(currentFontSize) + parseInt(sizeDifference * 5);
	if(currentFontSize > 100) currentFontSize = 100;
	else if(currentFontSize < 60) currentFontSize = 60;
	setFontSize(currentFontSize);
}

function setFontSize(fontSize){
	var stObj = (document.getElementById) ? document.getElementById('body') : document.all('body');
	document.body.style.fontSize = fontSize + '%';
	//alert (document.body.style.fontSize);
}

