function HL(element, on, color) 
{
	if (!on)
	{ 
		element.style.backgroundColor = color
		element.style.color = 'white'
	}
	else
	{ 
		element.style.backgroundColor = 'white'
		element.style.color = color
	}
	return false;
}

function OnSubmitButton()
{
	document.forms[0].action = "http://www.achbusiness.com/unauth.asp";
	document.forms[0].submit();
}
