function highlightErrorInput(errorField)
{
	if (isIE()==0)
	{
		errorField.backgroundColor="#CC9999";
	}
	else
	{
		errorField.className="inputerror";
	}

}

function highlightNormalInput(normalField)
{
	if (isIE()==0)
	{
		normalField.backgroundColor="#ffffff";
	}
	else
	{
		normalField.className="inputnormal";
	}

}