var content_fontSize = 1;
window.onload = function(){

var obj = document.getElementById("fontplus");

if (obj) {
	obj.onclick = function(){
	  //alert(document.getElementById("content").style.fontSize);
	  content_fontSize = content_fontSize + .1;
	  document.getElementById("content").style.fontSize = content_fontSize + "em";
	  return false;
	};
}

var obj = document.getElementById("fontminus");
if (obj) {
	obj.onclick = function(){
	  //alert(document.getElementById("content").style.fontSize);
	  content_fontSize = content_fontSize - .1;
	  document.getElementById("content").style.fontSize = content_fontSize + "em";  
	  return false;
	};
}

};