// Start Menu Mouseovers

/***********************************************
* Menu Script By BigDogAdmin
* This notice MUST stay intact for legal use
* Visit BigDogAdmin at http://www.bigdogarcade.com
***********************************************/

function displayMessage(div) {
var theDiv = "bm";
theDiv = theDiv+div;
document.getElementById('bm_default').style.display = "none";
document.getElementById(theDiv).style.display = "block";
}

function hideMessage(div) {
var theDiv = "bm";
theDiv = theDiv+div;
document.getElementById('bm_default').style.display = "block";
document.getElementById(theDiv).style.display = "none";
}

// End Menu Mouseovers

// Start Popup Window

function popUp(URL,height,width){
winpops=window.open(URL,"","width="+width+",height="+height+",left=10,top=10,status=0,scrollbars=0,resizable=1,menubar=0,location=0,toolbar=0")
}

function musicWindow(URL,height,width){
winpops=window.open(URL,"music","width="+width+",height="+height+",left=10,top=10,status=0,scrollbars=0,resizable=1,menubar=0,location=0,toolbar=0")
winpops.focus();
}

// End Popup Window

// Start no_yellow.js

<!--
if(window.attachEvent)
window.attachEvent("onload",setListeners);
function setListeners(){
inputList = document.getElementsByTagName("INPUT");
for(i=0;i<inputList.length;i++){
inputList[i].attachEvent("onpropertychange",restoreStyles);
inputList[i].style.backgroundColor = "";
}
selectList = document.getElementsByTagName("SELECT");
for(i=0;i<selectList.length;i++){
selectList[i].attachEvent("onpropertychange",restoreStyles);
selectList[i].style.backgroundColor = "";
}
}
function restoreStyles(){
if(event.srcElement.style.backgroundColor != "")
event.srcElement.style.backgroundColor = "";
}//-->

// End no_yellow.js

// Start nomoreyellow.js

    if(window.attachEvent)
    {//Attach to onload event in IE
        window.attachEvent("onload",resetStyles);
    }
    else
    {//Attach to load event in Other Browser
        window.addEventListener("load",resetStyles,false);
     //Attach to focus event in other browsers to disable
     //background color change in tabbed browsing  
        window.addEventListener("focus",resetStyles,false);   
    }

    function resetStyles()
    {
        resetStyle('input');
        resetStyle('select');
    }

    function resetStyle(inputType)
    {
        var count=document.getElementsByTagName(inputType);
        for(var i=0;i<count.length;i++)
        {
            if(window.attachEvent)
            {//Attach to onpropertychange event in IE
                count[i].attachEvent('onpropertychange',resetBC);
            }
            else
            {//Apply the style reset onload
                resetOther(count[i]);
            }
        }
    }
    
    function resetOther(El)
    {
        if(El.style.backgroundColor!='')
            El.style.backgroundColor='';
    }
    function resetBC()
    {
        if(event.srcElement.style.backgroundColor!='')
            event.srcElement.style.backgroundColor='';
    }

// End nomoreyellow.js
