
  <!--


    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"
   }
}


function markNav(){
	currID = location.search.substring(1,location.search.length)
	if(!location.search){
		currID = "home"
	}
	currObj = document.getElementById(currID)
	highlight(currObj)
	currObj.attributes.onmouseout.value = ""
}

function getNavigationString(what){
  navObject = document.getElementById(what)
  test = navObject.getElementsByTagName('a')
  navigationString = test[0].innerHTML
  return(navigationString)
}

function highlight(what){
  what.style.backgroundColor = "#C2B578"

}

function highlightOff(what){
  what.style.backgroundColor = "#D1CB92"

}

function openWin(what){
  winName = "html/" + what + ".html";
  open(winName,'Cancellation','top=200,left=120,width=400,height=400,directories=0,location=0,menubar=0,scrollbars=0,toolbar=0,resizable=1')
}

  //-->