function emailcheck(form) 
 {
  
  txt=document.hope.Submit_by.value;

  if (txt.indexOf("@")<3)
  {
   alert("I'm sorry. This email address seems wrong. Please"
   +" check the prefix and '@' sign.");
   return false;
  }
  return true;

 }
