/* shield page from geezer browsers -- try to get them to upgrade */
var dom = document.getElementById; // browser uses DOM ??
if (dom === undefined) {top.location.href="http://home.netscape.com/browsers";}

/* begin JavaScript code for the dropdown menu system */
var drop = false;               // set to false for pullout style menu
xoff=82; yoff=125; idx=150; idy=55;

function showmenu(elmnt,p) { // dropmenu positioning
if (drop === true) {   // index horizontally
   document.getElementById(elmnt).style.top=yoff+"px";
   document.getElementById(elmnt).style.left=((p*idx)+xoff)+"px";
   } else {          // index vertically
   document.getElementById(elmnt).style.top=((p*idy)+yoff)+"px";
   document.getElementById(elmnt).style.left=xoff+"px";
   }
document.getElementById(elmnt).style.visibility="visible";}
function hidemenu(elmnt) {
   document.getElementById(elmnt).style.visibility="hidden";}

/* end JavaScript code for dropdown menu system */
