// global heirmenus fuctions
<!--
if(window.event + "" == "undefined") event = null;

function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;

isMac = (navigator.appVersion.indexOf("Mac") != -1);
IE5 = (navigator.appVersion.indexOf("5.")!=-1);

HM_PG_FontFamily = "Verdana,sans-serif";
HM_PG_FontSize = (isMac && !IE5) ? 9 : 7;
HM_PG_ItemPadding = 5;
HM_PG_BorderWidth = 1;
HM_PG_BorderStyle = "solid";
HM_PG_SeparatorSize = 1;
HM_PG_KeepHilite = true; 
HM_PG_ClickStart = 0;
HM_PG_ClickKill = false;
HM_PG_ChildOverlap = 0;
HM_PG_ChildOffset = -1;
HM_PG_ChildPerCentOver = null;
HM_PG_TopSecondsVisible = .5;
HM_PG_StatusDisplayBuild =0;
HM_PG_StatusDisplayLink = 0;
//HM_PG_UponDisplay = "showSelect(false,'dvShipToContainer')";
//HM_PG_UponHide = "showSelect(true,'dvShipToContainer')";
HM_PG_UponDisplay = null;
HM_PG_UponHide = null;
HM_PG_RightToLeft = 0;
HM_PG_CreateTopOnly = 0;
HM_PG_ShowLinkCursor = 1;
HM_PG_NSFontOver = true;

// 2008-06-26 JFL stuff added to prevent select box from breaking through menu
function showSelect(isOn,divName) {
    var theSelect = null;
//    if (navigator.appVersion.indexOf("6.")!=-1)
//    {
       if(document.getElementById) {
          theSelect=document.getElementById(divName);
          if(theSelect) theSelect.style.visibility = isOn ? "visible" : "hidden";
       } else if (document.all) {
          theSelect=document.all(divName);
          if(theSelect) theSelect.style.visibility = isOn ? "visible" : "hidden";
       } else if (document.layers) {
          theSelect=document[divName];
          if(theSelect) theSelect.visibility = isOn ? "show" : "hide";
       }
//    }
}


//-->