
 var FontSizeMin = 10;
 var FontSizeMax = 14;
 
 function ChangeFontSize(v) {
 
   SitePagesContentAreaObj = document.getElementById("SitePagesContentArea").getElementsByTagName('*');

   for(i=0;i<SitePagesContentAreaObj.length;i++) {
   
       childObj = SitePagesContentAreaObj[i];

       if(childObj.innerHTML != "") {
     
          s = 10;
       
          if(childObj.style.fontSize)
             var s = parseInt(childObj.style.fontSize.replace("px",""));
      
          s = s + v;
       
          if(s >= FontSizeMin && s <= FontSizeMax)
             childObj.style.fontSize = s+"px";
       
       } // end if innerHTML
       
   } // end for
 
 } // end function
 
 
 function PagePrint() {
      
   document.getElementById("PrintButton").style.display = "none";

   window.print();
   
   document.getElementById("PrintButton").style.display = "block";

 } // end function


 function RecordsUrlNav(urlpath, pn) {

    urladdress = urlpath + pn;
    
    document.location.href = urladdress;

 } // end function


