function validate_rendezvous(oForm) {

$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$dob = $_POST['dob'];
$profession = $_POST['profession'];
$education = $_POST['education'];
$religion = $_POST['religion'];
$height = $_POST['height'];
$ethnicity = $_POST['ethnicity'];
$drinking = $_POST['drinking'];
$smoking = $_POST['smoking'];
$address = $_POST['address'];
$city = $_POST['city'];
$state = $_POST['state'];
$zip = $_POST['zip'];
$telephone = $_POST['telephone'];
$email = $_POST['email'];


	if (oForm.$_POST['firstname'].value == '') {
		alert("Hey!  We need your first name!");
		oForm.firstname.focus();
		return false;
	}
	
	if (oForm.lastname.value == '') {
		alert("Unless you're Madonna, Cher, Sting, or Seal, enter a last name.");
		oForm.lastname.focus();
		return false;
	}
	
}
	
	if (oForm.dob.value == '') {
		alert("We have age criteria.  This will help us match you up!");
		oForm.dob.focus();
		return false;
	}	
	if (oForm.address.value == '') {
		alert("Please enter your complete address.");
		oForm.address.focus();
		return false;
	}
	
	if (oForm.city.value == '') {
		alert("Please enter a business address city.");
		oForm.city.focus();
		return false;
	}
	
	if (oForm.state.value == '') {
		alert("Please enter a business address state.");
		oForm.state.focus();
		return false;
	}
	
	if (oForm.zip.value == '') {
		alert("Please enter a business address zip.");
		oForm.zip.focus();
		return false;
	}
	
	if (oForm.telephone.value == '') {
		alert("You do want that special someone to call you, right?");
		oForm.telephone.focus();
		return false;
	}
	
	if (oForm.email.value == '') {
		alert("Please enter an email address.");
		oForm.email.focus();
		return false;
	}
	
	
	

} // end function
