


function hiLite1(field)
 	{
	
	//check browser, this feature is not supported in Netscape (of Course)
 	if (navigator.appName == "Netscape")
 		{
			return true
		}
		else 
		//sets the background of the input field to the color value named
		{	
		
		document.forms[0].elements[field].style.backgroundColor = "beige";
		
		return false
		//document.body.style.cursor = "default";
		}
		
		
	}

//turns off background highlight
function noLite1(field)
 	{
 	if (navigator.appName == "Netscape")
 		{
			return true
		}
		else 
		//sets the background of the input field to the color value named
		{
		document.forms[0].elements[field].style.backgroundColor = "white";
	
		document.body.style.cursor = "default";
	
		
		}
			return null
	}
	
	
	function hiLite2(field)
 	{
	//check browser, this feature isnot supported in Netscape (of Course)
 	if (navigator.appName == "Netscape")
 		{
			return true
		}
		else 
		//sets the background of the input field to the color value named
		{	
	
		document.forms[1].elements[field].style.backgroundColor = "beige";
		
		document.body.style.cursor = "default";
		}
	
	}

//turns off background highlight
function noLite2(field)
 	{
 	if (navigator.appName == "Netscape")
 		{
			return true
		}
		else 
		//sets the background of the input field to the color value named
		{
		document.forms[1].elements[field].style.backgroundColor = "white"
		document.body.style.cursor = "default";
		}
			return null
	}