<!-- Menu system code --> 
function ShowHide(id, visibility) { 
    obj = document.getElementsByTagName("div"); 
    obj[id].style.visibility = visibility; 
} 
<!-- Menu system code stop --> 
 
 
<!-- Netscape Resize Fix start-->

          if (document.layers) {
                  widthCheck = window.innerwidth
                  heightCheck = window.innerheight
                  window.onResize = resizeFix
          }
          function resizeFix() {
                  if (widthCheck != window.innerwidth || heightCheck != window.innerheight)
                  document.location.href = document.location.href
          }
<!-- Netscape Resize Fix stop-->


<!-- IE5 link fix start --> 
function ExplorerFix()
{
for (a in document.links) document.links[a].onfocus =
document.links[a].blur;
}

if (document.all)
{
document.onmousedown = ExplorerFix;
}
<!-- IE5 link fix stop --> 


<!-- Preload images start --> 
function preloadImages() { 
var d=document; if(d.images){ if(!d.p) d.p=new Array();
var i,j=d.p.length,a=preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.p[j]=new Image; d.p[j++].src=a[i];}}
}
<!-- Preload images stop --> 
