function Form_Validator(theForm) {
	
if (theForm.tran_id.value == ""){
	alert("You must complete the 'Transaction ID' field.");
	theForm.tran_id.focus();
	return (false);
	}

if (theForm.con_name.value == ""){
	alert("You must complete the 'Name' field.");
	theForm.con_name.focus();
	return (false);
	}

if (theForm.email.value == ""){
	alert("You must complete the 'Email' field.");
	theForm.email.focus();
	return (false);
	}

if (theForm.enquiry.value == ""){
	alert("You must complete the 'Enquiry' field.");
	theForm.enquiry.focus();
	return (false);
	}

}
