function formValid(){
	if (document.theForm.name.value == "")
	{
	alert("You must enter Your name.");
	document.theForm.name.focus();
	return (false);
	}
	if (document.theForm.address.value == "")
	{
	alert("You must enter Your Address.");
	document.theForm.address.focus();
	return (false);
	}
	
	if (document.theForm.email.value == "")
	{
	alert("You must enter Your E-Mail.");
	document.theForm.email.focus();
	return (false);
	}
	
	if (document.theForm.phone.value == "")
	{
	alert("You must enter Your Phone No.");
	document.theForm.phone.focus();
	return (false);
	}
}