function validateForm(theForm){
	if(theForm.name.value == "" || theForm.name.value.length < 2){
		alert("Please complete your Name.");
		theForm.name.focus();
		return false;
	}
	 if(theForm.email.value == "" || theForm.email.value.indexOf('@',1)== -1 || theForm.email.value.indexOf('.',2)==-1){
		alert("Please fill in your Email address.");
		theForm.email.focus();
		return false;
	}
	if(theForm.phone.value == "" || theForm.phone.value.length < 2){
		alert("Please complete your Phone number.");
		theForm.phone.focus();
		return false;
	}
	return true;
}