   function resizeText(multiplier) {  
     if (document.body.style.fontSize == "") {  
       document.body.style.fontSize = "1.0em";  
     }  
     document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.2) + "em";  
  }  

function changeFontSize(inc)
{
  var p = document.getElementsByTagName('p');
  if	(inc < 2)
  {
		for(n=0; n<p.length; n++) 
		{
		    if(p[n].style.fontSize) {
		       var size = parseInt(p[n].style.fontSize.replace("px", ""));
		    } else {
		       var size = 13;
		    }
		    p[n].style.fontSize = size+inc + 'px';
	   }
   }
   else
   {
		for(n=0; n<p.length; n++) 
		{
		    if(p[n].style.fontSize) {
		       var size = parseInt(p[n].style.fontSize.replace("px", ""));
		    } else {
		       var size = 12;
		    }
		    p[n].style.fontSize = 12+ 'px';
	   }
   }
}