function bckgrdChange(butNum, theStatus)
{
	if(theStatus == 'on')
	{
		var theColor = '#182677';
		var txtColor = '#fff';
	
	} else {
	
		var theColor = '#F8CB66';
		var txtColor = '#182677';
	}
	
	e=document.getElementById("butText" + butNum);
	
	e.style.backgroundColor = theColor;
}
