//Use this for site specific javascript functions

function validContact(p_frm){
	if(isBlank(p_frm.contact_name.value)){
		errorMessage(p_frm.contact_name,'Please enter your name');
		return false;
	}
	if(!isValidEmailAddress(p_frm.email.value)){
		errorMessage(p_frm.email,'Please enter a correct email address');
		return false;
	}
	if(isBlank(p_frm.enquiry.value)){
		errorMessage(p_frm.enquiry,'Please enter your enquiry');
		return false;
	}
	
	return true;
}