

function form_enquiry(frm) {

	if (!Validate_text(frm.name, "Please enter your name."))
		return false;
		
	if (!Validate_text(frm.phone, "Please enter your contact phone #."))
		return false;
		
	if (!Validate_email(frm.email, "Please enter your contact email address."))
		return false;
		
	if (!Validate_cat(frm.particularinterest, "Please select the act you're particularly interested in."))
		return false;
		
	if (!Validate_cat(frm.interest, "Please select what kind of performance you're interested in."))
		return false;
		
	return true;
}