<!--
function mouse_ie(e){
	document.all.imageLayer.style.left = document.body.scrollLeft+event.clientX+5;
	document.all.imageLayer.style.top = document.body.scrollTop+event.clientY+5;
	document.all.imageLayer.style.zIndex=100;
	document.all.imageLayer.style.visibility= "visible";
}

function mouse_nc(e){
	document.imageLayer.pageX = e.pageX+10;
	document.imageLayer.pageY = e.pageY+10;
	document.imageLayer.zIndex=100;
	document.imageLayer.visibility= "show";
}

function mouse_move(){
   if (document.all){
      document.onmousemove = mouse_ie;
   }
   else{
      if (document.layers){
         document.captureEvents(Event.MOUSEMOVE);
         document.onmousemove = mouse_nc;
      }
   }
}
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
