function checkForm1(myForm) {
  
  if (myForm.Full_Name.value == ""){
  
    document.getElementById("Full_Name").style.borderColor = "#FF0000";
    document.getElementById("name").style.color = "#FF0000";
    
    alert("Please fill in your full name.");
    
    return false;

  }else{
  
    document.getElementById("Full_Name").style.borderColor = "#000000";
    document.getElementById("name").style.color = "#000000";
  }

  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.Email_Address.value)){
  
    document.getElementById("Email_Address").style.borderColor = "#000000";
    document.getElementById("email").style.color = "#000000";
    
  }else{
      
    document.getElementById("Email_Address").style.borderColor = "#FF0000";
    document.getElementById("email").style.color = "#FF0000";
    
    alert("Invalid E-mail Address! Please re-enter.");
    
    return false;

  }
  
  return true;

}




