/* selectControl.js
*/
//'SCRIPT COPYRIGHT W.KELLY


function selectControl(a)
{
	a.style.background="darkorange";
	a.style.color="black";
	//a.style.fontWeight="bold";
	//a.style.fontStyle="italic";
	//a.style.textDecoration="underline";
}

function unselectControl(a)
{
	
	if (a.name.indexOf("cmd1")==0)
	{
		a.style.background="black";
		a.style.color="gold";
		a.style.fontWeight="";
		a.style.fontStyle="";
		a.style.textDecoration="";
	}
	else if (a.name.indexOf("cmd2")==0)
	{
		a.style.background="#283D4D";
		a.style.color="gold";
		a.style.fontWeight="";
		a.style.fontStyle="";
		a.style.textDecoration="";
	}
	else if (a.name.indexOf("cmd3")==0)
	{
		a.style.background="#3A566D";
		a.style.color="gold";
		a.style.fontWeight="";
		a.style.fontStyle="";
		a.style.textDecoration="";
	}
	else
	{
		a.style.background="white";
		a.style.textDecoration="";
	}

	a.style.color="darkblue";

}
function highlightBox(a)
{
	//a.style.backgroundImage='url(http://melissa/intranet/images/ag_box.gif)';
	a.style.background="blue";
	a.style.bordercolor="orange";
	a.style.color="white";
	a.style.fontWeight="bold";
	a.style.fontStyle="italic";
	//a.style.textDecoration="underline";
}

function highlightButton(a)
{
	//a.style.backgroundImage='url(http://www.aerostaff.com.au/aerostaff/images/codedbarhighlight.gif)';
	//a.style.backgroundImage='url(http://www.aerostaff.com.au/aerostaff/images/GREY GRADIENT.JPG)';
	//a.style.background="darkorange";
	a.style.background="#232323";
	a.style.background="#000051";
	a.style.color="darkblue";
	//a.style.fontWeight="bold";
	//a.style.fontStyle="italic";
	//a.style.textDecoration="underline";
}

function unlightButton(a)
{
//a.style.backgroundImage='url(http://www.aerostaff.com.au/aerostaff/images/codedbar.gif)';
	//a.style.background="orange";
	a.style.background= "";
	a.style.color="white";
}
function highlightCustomerButton(a)
{
//a.style.backgroundImage='url(http://www.aerostaff.com.au/aerostaff/images/codedbarhighlight.gif)';
	a.style.background="darkorange";
	a.style.color="darkblue";
	//a.style.fontWeight="bold";
	//a.style.fontStyle="italic";
	//a.style.textDecoration="underline";
}

function unlightCustomerButton(a)
{
//a.style.backgroundImage='url(http://www.aerostaff.com.au/aerostaff/images/codedbar.gif)';
	//a.style.background="orange";
	a.style.background= "silver";
	a.style.color="white";
}
function unlightBox(a)
{
	a.style.background="silver";
	a.style.color="black";
	a.style.fontStyle="";
}

function highlightMenuItem(a)
{
	//a.style.backgroundImage='url(http://melissa/aerostaff/images/back3.gif)';
	a.style.background = "red";
	a.style.color="midnightblue";
	//a.style.fontWeight="bold";
	//a.style.fontStyle="italic";
	//a.style.textDecoration="underline";
}

function unlightMenuItem(a)
{
	a.style.background="";
	a.style.color="";
}

