var ans=true;

function VEmail(e){
  return (e.match(/^[^\s()<>@,;:\"\/\[\]?=]+@\w[\w-]*(\.\w[\w-]*)*\.[a-z]{2,}$/i));
}

function Validate(){
  name = document.Comment.name.value;
  email = document.Comment.email.value;
  if ( name == "" ) {
    ans = false;
    obj = getElementById("BN");
    obj.style.color = "Red";
  } else {
    obj = getElementById("BN");
    obj.style.color = "#FFFFFF";
  }
  if (! VEmail(email) ) {
    ans = false;
    obj = getElementById("BE");
    obj.style.color = "Red";
  } else {
    obj = getElementById("BE");
    obj.style.color = "#FFFFFF";
  }
return ( ans );
}
