<!-- Hide Javascript
function checkform(form) {
	if (!ValidateText(form.first_name, 'Please enter a First Name.', 'Y')) { return false; }
	if (!ValidateText(form.last_name, 'Please enter a Last Name.', 'Y')) { return false; }
  if (!ChkEmail(form.email, 'Please enter a valid Email.', 'Y')) { return false; }
  if (!ChkEmail(form.emailConfirm, 'Please enter a valid Confirm Email.', 'Y')) { return false; }
	if (form.email.value != form.emailConfirm.value) { alert('The Email and Confirm Email do not match. Please correct.'); return false;}
	return true;
}

//  Stop Hiding Javascript -->
