siteRoot='/';

/*
    MISC FUNCTIONS
*/
function ap(myLink) {
    window.open(myLink);
    return false;
}

function resPop(myLink) {
    myWindow = window.open(myLink, "resPopUp");
    myWindow.focus();
    return false;
}

/*
    MENU FUNCITONS
*/
function setSection(l1,l2) {
    // highlight L1 bar

    myL1=document.getElementById("m"+l1);
    if(myL1) {
        myL1.style.backgroundColor='#0A3399';
        myL1.style.backgroundImage='url('+siteRoot+'images/layout/l1Bg.gif)';
    }


    // show submenu if present
    mySub=document.getElementById("sub"+l1);
    if(mySub) mySub.style.display="block";

    // highlight l2 bar
    if(l2) {
        myL2=document.getElementById("m"+l1+"_"+l2);
        if(myL2) {
            myL2.style.background='#F7BA0E';
            myL2.style.color='#0A3399';
        }
    }
}    