function Case_Validator(theForm)
{
	if(theForm.name.value=="")
	{
	alert("Please select a value for the \" First name\" field.");
	theForm.name.focus();
	return (false);
	}

	if(theForm.email.value=="")
	{
	alert("Please select a value for the \"Email\" field.");
	theForm.email.focus();
	return (false);
	}
		
	if(theForm.email.value.length < 5)
	{
	alert("Please enter at least 5 characters in the \"Email\" field.");
	theForm.email.focus();
	return (false);
	}
	
	if(theForm.phone.value=="")
	{
	alert("Please enter a value for the \" Phone\" field.");
	theForm.phone.focus();
	return (false);
	}
	return (true);
}