function changeFontSize(inc){
  var p = document.getElementsByTagName('p');
  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 = size+inc + 'px';
   }
  
  var h3 = document.getElementsByTagName('h3');
  for(n=0; n<h3.length; n++) {
	if(h3[n].style.fontSize) {
	   var size = parseInt(h3[n].style.fontSize.replace("px", ""));
	} else {
	   var size = 20;
	}
	h3[n].style.fontSize = size+inc + 'px';
   }
  var a = document.getElementsByTagName('a');
  for(n=0; n<a.length; n++) {
	if(a[n].style.fontSize) {
	   var size = parseInt(a[n].style.fontSize.replace("px", ""));
	} else {
	   var size = 14;
	}
	a[n].style.fontSize = size+inc + 'px';
   }
}