var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");

function switchFontSize(val) {   
	switch (val) {
		case 'inc':
			document.body.style.fontSize = parseFloat(document.body.style.fontSize) + 1 + "em";
		break;
		case 'dec':
			document.body.style.fontSize = parseFloat(document.body.style.fontSize) - 1 + "em";
		break;
		default:
			var multiplier=parseInt(val);
  			document.body.style.fontSize = "14px";
 	}
}

function resizeText(multiplier) {  
  if (multiplier>1)
	document.body.style.fontSize = "0.81em";
  else
  {
  	if (document.body.style.fontSize == "") {   
	    document.body.style.fontSize = "0.88em";   
	  }   
	  document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.2) + "em";   
  }
}  