function ValidateForm(theForm){
	//First Name test
  	if (theForm.fFirstName.value == ""){
    	alert("Please enter first name.");
    	theForm.fFirstName.focus();
    	return (false);
  	}
	//Last Name test
  	if (theForm.fLastName.value == ""){
    	alert("Please enter your last name.");
    	theForm.fLastName.focus();
    	return (false);
  	}
	//Email Test
	if (checkEmail(theForm.fEmail_1.value) == false){
		theForm.fEmail_1.select();
		theForm.fEmail_1.focus();
		return (false);
	}
	if (checkEmail(theForm.fEmail_2.value) == false){
		theForm.fEmail_2.select();
		theForm.fEmail_2.focus();
		return (false);
	}
	if (theForm.fEmail_1.value != theForm.fEmail_2.value){
		alert("Email addresses do no match.");
    	theForm.fEmail_1.focus();
		return (false);
	}
}