function validate_form(theForm)
{
if (theForm.Name.value=="") {
alert("Please enter your name.");
	theForm.Name.focus();
	return false;
}
if (theForm.Contact_Phone.value=="") {
alert("Please enter your contact phone.");
	theForm.Contact_Phone.focus();
	return false;
}
if (theForm.Contact_Email.value=="") {
alert("Please enter your email address.");
	theForm.Contact_Email.focus();
	return false;
}
return true;
}