function hilite(field) 
// This highlights the text box to light yellow -  You can put in any color
{
	if (document.all) {
		document.inforequest.elements[field].style.backgroundColor="#FFFFCC";
	}
}