function check(){
    
   if (document.myform.email.value=="") {
    alert("Nem töltötte ki a e-mail mezőt!");
    document.myform.email.focus();
    return false;
  }
   var text=document.myform.email.value;
   if (text.indexOf('@') == -1)
    {
      alert("Az e-mail címben szerepelni kell a @ karakternek!");
      document.myform.email.focus();
      document.myform.email.select();
      return false;
    }
	var text=document.myform.email.value;
    if (text.indexOf('.') == -1)
    {
      alert("Az e-mail címben szerepelni kell a . karakternek!");

      document.myform.email.focus();
      document.myform.email.select();
      return false;
    } 
	var text=document.myform.email.value;
    if ((text.length-text.lastIndexOf("."))>4 || (text.length-text.lastIndexOf("."))<2)
    {
      alert("Hibás e-mail cím!");
      document.myform.email.focus();
      document.myform.email.select();
      return false;
    } 
	var text=document.myform.email.value;
    if (text.indexOf(".")==text.indexOf("@")+1)
    {
      alert("Hibás e-mail cím!");
      document.myform.mail.focus();
      document.myform.mail.select();
      return false;
    }   

    
 }
