function contactValidate(form) {
	if (form.contactname.value == "") {
		alert("Please enter your name!");
		return false;
	}
	
	if (form.contactmobile.value == "" && form.contactworkphone.value == "") {
		alert("Please enter a contact number!");
		return false;
	}
	
	if (form.contactcomments.value =="") {
		alert("Please enter a reason so we can have the right person contact you!");
		return false;
	}
	
	return true;
}
