// JavaScript Document

function checkForm() {
	
	errors = 0;

	errors = validateEmail("contact_email", errors);
	errors = validateString("contact_fname", errors);
	  
  if (errors == 1){
  return false;
  }
  else{
  return true;
  }
  
}