function CheckForm(oForm) {
	if (oForm.title.options[oForm.title.selectedIndex].value == '') {
		alert('Please select a title');
		oForm.title.focus();
		return false;
	}
	if (oForm.name.value == '') {
		alert('Please enter a name');
		oForm.name.focus();
		return false;
	}
	if (!IsEmailValid(oForm.email_address)) {
		alert('Please enter a valid email address');
		oForm.email_address.focus();
		return false;
	}
	if (oForm.phone.value == '') {
		alert('Please enter a daytime phone number');
		oForm.phone.focus();
		return false;
	} else {
    if (isNaN(oForm.phone.value)) {
  		alert('Please enter a valid phone number');
	  	oForm.phone.focus();
	 	  return false;
	 	}
	}
	if (oForm.country.options[oForm.country.selectedIndex].value == '') {
		alert('Please select a Country');
		oForm.country.focus();
		return false;
	}
	if (oForm.occupation.options[oForm.occupation.selectedIndex].value == '') {
		alert('Please select an Occupation');
		oForm.occupation.focus();
		return false;
	}
	if (oForm.speciality.options[oForm.speciality.selectedIndex].value == '') {
		alert('Please select a Speciality');
		oForm.speciality.focus();
		return false;
	}
}