function contactValidate(form) {
	if (form.contactname.value == "" || form.contactname.value == null) {
		alert("Please enter your name before submitting the form.");
		return false;
	}
	
	if (form.contactmobile.value == "" || form.contactworkphone.value == null) {
		alert("Please enter your contact mobile and workphone.");
		return false;
	}
	
	
	if (form.contactemail.value == "" || form.contactemail.value == null) {
		alert("Please enter your email address.");
		return false;
	}
	
	if (form.contactcomments.value == "" || form.contactcomments.value == null) {
		alert("Please enter a comment so we can have the right person contact you.");
		return false;
	}
	
	return true;
}

function validateRegistration(form) {
	if (form.fullname.value == "") { 
		alert("Please enter your fullname");
		return false;
	}
	
	if (form.businessname.value == "") { 
		alert("Please enter your fullname");		
		return false;
	}
	
	if (form.telephone.value == "") { 
		alert("Please enter your Business telephone number");		
		return false;
	}
	
	if (form.email.value == "") { 
		alert("Please enter your email");		
		return false;
	}
	
	if (form.church.value == "") { 
		alert("Please enter your Church");		
		return false;
	}
	
	if (form.pastor.value == "") { 
		alert("Please enter your Pastor");		
		return false;
	}
	
	if (!form.tncchk.checked) { 
		alert("You must agree to the terms & conditions before registering");		
		return false;
	}
	
	
	return true;	
}
