// JavaScript Document
var lastID = '';
var lastpage = '';

function showhidediv(divid){
if (lastpage != ''){
document.getElementById(lastpage).style.display="none";
}
document.getElementById(divid).style.display="";
lastpage=divid;
}

function showdiv(divid){
document.getElementById(divid).style.display="";
}
function hidediv(divid){
document.getElementById(divid).style.display="none";
}
function changeimg(imagesrc){
document.getElementById('mainimage').src=imagesrc;
}
function setbg(elementID){
if (lastID != '') {
document.getElementById(lastID).style.backgroundColor="";
}
document.getElementById(elementID).style.backgroundColor="#ccff99";
lastID=elementID;
}
var min=8;
var max=18;
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
}