/*
 selectControl.js
*/

function highlightSiteMenuButton(a)
{
    /*thisImageAddress = "url(" + sessionAddress + "images/sitemenubuttonhover002.jpg)";*/
	/*a.style.backgroundImage=thisImageAddress;*/
    a.style.background="darkorange";
	a.style.color="white";
}

function unHighlightSiteMenuButton(a)
{
    /*thisImageAddress = "url(" + sessionAddress + "images/sitemenubuttonoff.jpgXXXX)";*/
	/*a.style.backgroundImage=thisImageAddress;*/
	a.style.background="";
	a.style.color="black";
}


function highlightLoginButton(a)
{
    thisImageAddress = "url(" + sessionAddress + "images/loginbuttonhover.jpg)";
	a.style.backgroundImage=thisImageAddress;
}

function unHighlightLoginButton(a)
{
    thisImageAddress = "url(" + sessionAddress + "images/loginbuttonoff.jpg)";
	a.style.backgroundImage=thisImageAddress;
}

function highlightSubMenuButton(a)
{
	//a.style.background="darkorange";
	a.style.color="darkorange";
}

function unHighlightSubMenuButton(a)
{
	//a.style.background="";
	a.style.color="gray";
}

function highlightInput(a)
{
	/*a.style.background="#D9E8FF";*/
	a.style.background="silver";
}

function unHighlightInput(a)
{
	a.style.background="";
}


function highlightLauncherButton(a)
{
	a.style.background="darkorange";
}

function unlightLauncherButton(a)
{
	a.style.background="";
}


function gotoContactUs()
{
    document.location.href=sessionAddress + "Pages/ContactUs/Locations/?BTN=8&PG=29";
}
