/* 
selectControl.js 
*/
//SCRIPT COPYRIGHT WAYNE KELLY (WAYNE.CURSOR@GMAIL.COM)

function homeBtnON(a)
{
    var imageAddress
    imageAddress = "url(http://www.humanrightscommission.vic.gov.au/images/testimages/" + a.name + "click.gif)";
    a.style.backgroundImage=imageAddress;
    a.style.color="white";
    a.style.cursor="hand";	
}
function homeBtnOFF(a)
{
    var imageAddress
    imageAddress = "url(http://www.humanrightscommission.vic.gov.au/images/testimages/" + a.name + "off.gif)";
    a.style.backgroundImage=imageAddress;
    a.style.color="white";
}

function homeBtnCLICK(a)
{
    a.style.background="#333399";
    var imageAddress
    imageAddress = "url(http://www.humanrightscommission.vic.gov.au/images/testimages/" + a.name + "CLICK.gif)";
    a.style.backgroundImage=imageAddress;
    a.style.color="white";
}



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
	{
		a.style.background="white";
		a.style.textDecoration="";
	}

	a.style.color="darkblue";
}
