self.onerror = function() { return true; } //potlačení chybových hlášek
/* sada funkcí pro email*/

function over(adresa,txtb)
{
  if(adresa.indexOf("@")==-1)
 {
 window.alert("Zadal(a) jste chybnou emailovou adresu!\n"
 + "             Zkuste to znovu!");
 document.reg.mailto.select()
 return false ;
 }
/*
if(txtb.length<=0)
 {
 window.alert("Nic jste nenapsal(a)!\n"
 + "Zkuste to znovu!");
 document.reg.zprava.select();
 return false;
 }
*/
 
 window.alert('Vaše zpráva bude nyní odeslána.');
 return true;
}

