

function getEML(id_posta){
       var link = document.getElementById(id_posta);
       if (link!==null){
         var obsah=link.innerHTML.replace(/\[zavinac\]/g,'@').replace(/\[tecka\]/g,'.')
         link.setAttribute('href','mailto:'+obsah);
         link.firstChild.nodeValue=obsah;
       }  
}

function CheckContact(o){
if (o.Telefon.value=='' && o.Email.value==''){
   alert("Není vyplněný telefon nebo e-mailová adresa. Doplňte údaje, jinak Vás nebudeme schopni kontaktovat.");
   o.Telefon.focus();
   return false;
  }
 else return true;
 }
