function rezieText(num)
	{ 
		if(document.body.style.fontSize!="200%" && num==1)
		{
			 if(document.body.style.fontSize=="")
			 {
			 document.body.style.fontSize=80+20+'%';
			 }
			 else
			 {
			 var c=parseInt(document.body.style.fontSize.substring(0,document.body.style.fontSize.length-1));
			 document.body.style.fontSize=c+20+'%';
			 }
		}
	  else if(document.body.style.fontSize!="" && document.body.style.fontSize!="80%" && num!=1)
		{
			 var c=parseInt(document.body.style.fontSize.substring(0,document.body.style.fontSize.length-1));
			 document.body.style.fontSize=c-20+'%';
		}	   	
	}
	
	function rezieText2(num,e)  {  
	if (e.keyCode == 13)
		{
			if(document.body.style.fontSize!="200%" && num==1)
			{
				 if(document.body.style.fontSize=="")
				 {
				 document.body.style.fontSize=80+20+'%';
				 }
				 else
				 {
				 var c=parseInt(document.body.style.fontSize.substring(0,document.body.style.fontSize.length-1));
				 document.body.style.fontSize=c+20+'%';
				 }
			}
		  else if(document.body.style.fontSize!="" && document.body.style.fontSize!="80%" && num!=1)
			{
				 var c=parseInt(document.body.style.fontSize.substring(0,document.body.style.fontSize.length-1));
				 document.body.style.fontSize=c-20+'%';
			}  
		}        
}

/*
function preparePrint() {
   var newURL = location.href;
   if (newURL.indexOf("printFormat=yes")>0) {
      first= newURL.indexOf("&printFormat=yes");
      if (newURL.indexOf("?printFormat=yes")>0) {
      	      first= newURL.indexOf("?printFormat=yes");
      }
      if (first > 0) {
        newURL = newURL.substring(0,first);
      }
   } 
   if (newURL.indexOf('?')<1) {
      newURL = newURL + "?printFormat=yes";
   } else {
      newURL = newURL + "&printFormat=yes";
   }
   options = 'location=no,menubar=yes,resizable=yes,scrollbars=yes,toolbar=no,width=600,height=400';
   window.open('Accessibility-Page-Option1-v2.0_print.html','printable',options);
}
*/
