var ok = false;
 function skontroluj(){ 
  if ((fff.adresa.value.indexOf("@") == -1) || (fff.adresa.value.charAt(0) == ".") || 
   (fff.adresa.value.charAt(0) == "@") || (fff.adresa.value.length < 6) || (fff.adresa.value.indexOf(".") == -1) || 
   (fff.adresa.value.charAt(fff.adresa.value.indexOf("@")+1) == ".") || 
   (fff.adresa.value.charAt(fff.adresa.value.indexOf("@")-1) == ".") || 
   (fff.adresa.value.charAt(fff.adresa.value.length)==".")) {alert("Napíšte prosím svoju platnú e-mailovú adresu !");ok=false;return;};											
 ok=true;
};

