function contest_Validator(theForm){
	if (theForm.name.value == "")	{
		alert("Please enter a \"Name\" ");
		theForm.name.focus();
	return (false);
	}
 	if (theForm.day_phone.value == "")	{
		alert("Please enter an \"Daytime Phone Number\" ");
		theForm.day_phone.focus();
	return (false);
	} 
 	if (theForm.eve_phone.value == "")	{
		alert("Please enter an \"Evening Phone Number\" ");
		theForm.eve_phone.focus();
	return (false);
	} 
 	if (theForm.email.value == "")	{
		alert("Please enter an \"Email Address\" ");
		theForm.email.focus();
	return (false);
	} 
}
function contact_Validator(theForm){

	if (theForm.name.value == "")	{
		alert("Please enter your \"Name\"");
		theForm.name.focus();
	return (false);
	}
 	if (theForm.email.value == "")	{
		alert("Please enter your \"E-Mail Address\" ");
		theForm.email.focus();
	return (false);
	} 
}
function trailer_Validator(theForm){
	if (theForm.name.value == "")	{
		alert("Please enter a \"Name\" ");
		theForm.name.focus();
	return (false);
	}
 	if (theForm.email.value == "")	{
		alert("Please enter an \"Email Address\" ");
		theForm.email.focus();
	return (false);
	} 
}