/************************************************************************
     copyright Innovative Media Corporation
     www.innovativemediacorp.com
     360 iPix(r) image copyrighted by Innovative Media Corporation
***********************************************************************/

//Map rollover code

browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))

if(document.images) {

turbine_on = new Image()
turbine_on.src = "../gui/bn_turbine_on.gif"
turbine_off = new Image()
turbine_off.src = "../gui/bn_turbine_off.gif"

lgtracker_on = new Image()
lgtracker_on.src = "../gui/bn_lgtracker_on.gif"
lgtracker_off = new Image()
lgtracker_off.src = "../gui/bn_lgtracker_off.gif"

smtracker_on = new Image()
smtracker_on.src = "../gui/bn_smtracker_on.gif"
smtracker_off = new Image()
smtracker_off.src = "../gui/bn_smtracker_off.gif"

lobby_on = new Image()
lobby_on.src = "../gui/bn_lobby_on.gif"
lobby_off = new Image()
lobby_off.src = "../gui/bn_lobby_off.gif"

engineroom_on = new Image()
engineroom_on.src = "../gui/bn_backroom_on.gif"
engineroom_off = new Image()
engineroom_off.src = "../gui/bn_backroom_off.gif"

conference_on = new Image()
conference_on.src = "../gui/bn_conference_on.gif"
conference_off = new Image()
conference_off.src = "../gui/bn_conference_off.gif"

<!--
}

function toggle(imgName,imgSrc) {
        if (document.images) {
                document[imgName].src = eval(imgSrc + ".src")
        }
}

function openWindow(theURL,winName,features) { //v1.0
  window.open(theURL,winName,features);
}

