/* 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://aeronet/intranet/images/ag_bttn.gif)';
	a.style.background="black";
	a.style.color="aqua";
	a.style.cursor="hand";
	a.style.textDecoration="underline";
	//a.style.fontWeight="bold";
	//a.style.fontStyle="italic";
	//a.style.textDecoration="underline";
}

function unlightButton(a)
{
	a.style.background="";
	a.style.color="black";
}
function highlightRow(a)
{
	//a.style.backgroundImage='url(http://www.themadeleinegroup.com.au/images/rowhighlightbackgroundeffect.gif)';
	a.style.background="aqua";
	a.style.color="white";
	a.style.fontWeight="bold";
	a.style.fontStyle="italic";
	//a.style.textDecoration="underline";
}

function unlightRow(a)
{
	a.style.backgroundImage='url()';
	//a.style.background="darkorange";
	a.style.color="black";
}
function unlightBox(a)
{
	a.style.background="silver";
	a.style.color="black";
	a.style.fontStyle="";
}

function highlightColumn(a)
{
	a.style.backgroundImage='url(http://aeronet/intranet/images/orangebar.bmp)';
	a.style.color="white";
	a.style.fontWeight="bold";
	a.style.fontStyle="italic";
	//a.style.textDecoration="underline";
}

function unlightColumn(a)
{
	a.style.backgroundImage='url()';
	//a.style.background="darkorange";
	a.style.color="black";
}
