// JavaScript Document
<!--
/* 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 = true;   // set to false for pullout style menu
xoff=212; yoff=30; // set to drop origin point left upper
idx=110; idy=24;   // set to column width and height

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 */