function validator(theForm) 
	{
if 	(theForm.name.value == "")
		{
			alert("Please enter your name!");
			theForm.name.focus();
			return (false);
		}
else if  (theForm.phone.value == "")
		{
			alert("Please enter your phone number!");
			theForm.phone.focus();
			return (false);
		}
else if  (theForm.email.value == "")
		{
			alert("Please enter your email!");
			theForm.email.focus();
			return (false);
		}
else if  (theForm.timecontact.value == "")
		{
			alert("Please select a best time for us to contact you!");
			theForm.timecontact.focus();
			return (false);
		}
else if  (theForm.location.value == "")
		{
			alert("Please select a location!");
			theForm.location.focus();
			return (false);
		}
else if  (theForm.hear.value == "")
		{
			alert("Please select how you heard about or found us, or just select 'other'!");
			theForm.hear.focus();
			return (false);
		}

	} 