function validateQuoteform(theForm)
{
	if (theForm.email.value == "")
	{
		alert("Please enter a value in the email field.");
		theForm.email.focus();
		return (false);
	}

	if (theForm.email.value.length < 6)
	{
		alert("Please enter at least 6 characters in the email field.");
		theForm.email.focus();
		return (false);
	}
	return (true);
}