function checkEmail()
{
  var x=document.subscribeForm;
  var at=x.email.value.indexOf("@" && ".");
  if(at==-1) 
  { 
    alert("Not a valid e-mail address, please verify and re-send");
    return false;
  }
  return true;
}
