// <--
// Make div's visible or invisible - ex. mouseovers 
      function show(object) {
              if (document.layers && document.layers[object] != null)
                      document.layers[object].visibility = 'visible';
              else if (document.all)
                      document.all[object].style.visibility = 'visible';
      }
      function hide(object) {
              if (document.layers && document.layers[object] != null)
                      document.layers[object].visibility = 'hidden';
              else if (document.all)
                      document.all[object].style.visibility = 'hidden';
      }

// NS resize fix
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);

// Window open routine, can be called on any page with the following code:
// <a href="javascript:messageWindow('URL')">
function messageWindow(URL) {
  remoteWin = window.open("","Instructions",'toolbar=yes,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=400');
  if (remoteWin != null) {
    remoteWin.rootWin = self;
    remoteWin.location = URL;
	remoteWin.focus()
  }
}
function fetch(url) {
  rootWin.location = url;
}
 // -->

