function check_email(e) 
{
 ok = "1234567890qwertyuiop[]asdfghjklzxcvbnm.@-_QWERTYUIOPASDFGHJKLZXCVBNM";
 
 for(i=0; i < e.length ;i++)
 {
  if(ok.indexOf(e.charAt(i))<0){return (false);} 
 }
 
 if (document.images)
 {
  re = /(@.*@)|(\.\.)|(^\.)|(^@)|(@$)|(\.$)|(@\.)/;
  re_two = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
   if (!e.match(re) && e.match(re_two)){return (-1);} 
 }
}

function check_form(f)
{
if(f.name.value.length < 1)
   {
   alert("Prosím zadajte Vaše meno.");
   f.name.focus(); 
   return false;
   }
if(!check_email(f.email.value))
   {
   alert("Prosím zadajte platnú e-mailovú adresu.");
   f.email.focus(); 
   return false;
   }
if(f.text.value.length < 1)
   {
   alert("Prosím vyplňte text správy.");
   f.text.focus(); 
   return false;
   }
}
