var min=20;
var max=80;
function increaseFontSize() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace(/%/,""));
      } else {
         var s = 62;
      }
      if(s<max) {
         s += 5;
      }
      p[i].style.fontSize = s+"%"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace(/%/,""));
      } else {
         var s = 62;
      }
      if(s>min) {
         s -= 5;
      }
      p[i].style.fontSize = s+"%"
   }
}

function formGo() {
	if(document.SearchForm.query.value.length > 0) {
    	document.SearchForm.submit();
	}
}