// site Javascripts

/* externí odkaz */
function externalLinks() { 
  if (!document.getElementsByTagName) return; 
  var anchors = document.getElementsByTagName("a"); for (var i=0; i<anchors.length; i++) { 
    var anchor = anchors[i]; if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "externi") anchor.target = "_blank";
  } 
} 
window.onload = externalLinks;

/* odkrytí textu */
function klikni(id){
el=document.getElementById(id).style; 
el.display=(el.display == 'block')?'none':'block';
};

/* kontakt */
function zobraz(theForm){
document.forms[0][0].value = '+420 774 552 345';
};

/* kontrola formuláře */
function Validate(theForm) {
     for( var i=0; i<theForm.length; i++ ) {
      with(theForm.elements[i]) { 
       if( type=="text" ) {
         if( name.indexOf("num")==0 ) {
             if( (value.length==0) || isNaN(parseInt(value)) ) {
                 alert('Vyplňte prosím číselnou hodnotu do pole"' + name.slice(1) + '".');
                 focus();
                 return false;        
             }
         } else {
             if( value.length==0) {
                 alert('Vyplňte prosím hodnotu do pole"' + name + '".');
                 focus();
                 return false;        
             }
         }
       }
      }
     }
     return true;
 };
