// JavaScript Document

    <!-- //
var pageHt=750
var pageWt=890  //1025
 function centerIt()
 {
   if(IE)
   {
     var theWindHt=document.body.clientHeight
     var theWindWt=document.body.clientWidth
   }
   if(NS)
   {
     var theWindHt=window.innerHeight
     var theWindWt=window.innerWidth
   }
   theTop=parseInt((theWindHt-pageHt)/2)
   theLeft=parseInt((theWindWt-pageWt)/2)
   if(theTop<=-80)
   {
     theTop=-80
   }
   if(theLeft<=10)
   {
   theLeft=10
   }
   if(NS)
   {
      document.thisPage.top=theTop
      document.thisPage.left=theLeft
   }
   if(IE)
   {
      document.all.thisPage.style.top=theTop
      document.all.thisPage.style.left=theLeft
   }

 }
   centerIt()
    if(IE) window.onresize=centerIt

   //---Netscape has a resize bug, therefore reload  needed---
   if(NS)
   {
    origWidth=innerWidth
    origHeight=innerHeight
   }
   if(NS)window.onresize=reloadAgain
   function reloadAgain()
   {
     if(innerWidth!=origWidth||innerHeight!=origHeight)
       location.reload()
   }
 // -->
