<!--
/*
   function NoRightClick(evnt) {
    if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
       if (evnt.which == 3){
           alert("Ha! Ha!");
        return false;}
     }
     else if (event.button==2 || event.button==3)
        alert("Ha! Ha!");
       }
       document.onmousedown = NoRightClick;
       */
    document.onMouseDown = PressButton;
    var oLastBtn=0;
    function RaiseButton(){
    //  window.event.cancelBubble=true;
        oBtn = window.event.srcElement;
        var bChosen = false;
        if(oLastBtn && oLastBtn != oBtn){
            HideButton();
        }
        if(oBtn.buttonType){
            oBtn.className = oBtn.buttonType + "Up";
            oLastBtn=oBtn;
            }
        else {
        oLastBtn = 0;
        }
    }
    function PressButton(event)
    {
        //alert(navigator.appName);
        if("Netscape"==navigator.appName)
        {
/*            oBtn = window.event.srcElement;
            if(oBtn.buttonType){
                oBtn.className = oBtn.buttonType + "Down"; 
                if (oBtn.className == "LeftNavChosenDown") {
                oBtn.className = "LeftNavDown";
                }
            }
*/            
        }
        else
        {        
    //      window.event.cancelBubble=true;
            oBtn = window.event.srcElement;
            if(oBtn.buttonType){
                oBtn.className = oBtn.buttonType + "Down"; 
                if (oBtn.className == "LeftNavChosenDown") {
                oBtn.className = "LeftNavDown";
                }
            }
        }
    }
    function HideButton(){
        if ((oLastBtn.buttonType == "LeftNavChosen") || (oLastBtn.buttonType == "LeftNavSubChosen")) {
            oLastBtn.className = oLastBtn.buttonType;
        }
        else {
        oLastBtn.className = oLastBtn.buttonType + "Off";
        }
    }
//-->
