<!--
  function bigPhoto(src) {
        var NewWin = window.open('','FotoGalery','toolbar=0,location=0,menubar=0,status=0,width=500,top=50,left=50,resizable=1,scrollbars=1');
        with (NewWin.document) {
          write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
          write('<html xmlns="http://www.w3.org/1999/xhtml" lang="sk" xml:lang="en">');
          write('<head><title>Fotografia</title><link rel="stylesheet" type="text/css" href="./style/bigphoto.css" /></head><body>');
          write('<a href="javascript:window.close();" title="Kliknutím okno zavriete"><img src="'+src+'" alt="Kliknutím okno zavriete" /><br />Kliknutím okno zavriete.</a>');
          write('</body></html>');
          close();
        }      
  }	
  function rowOver(id) {
  
        eval('id = document.all.' + id);
        id.style.backgroundColor = "#FFEFDD";
  }
  function rowOut(id) {
  
        eval('id = document.all.' + id);
        id.style.backgroundColor = "";
  }
  
  var show = true;
  
  function detail(path) {
        if (show)  
            window.location = path; 
        else 
            show = true; 
  } 
     
  function no_detail() { 
        show = false; 
  } 

  function checkForm1(id) {
        eval('id = document.all.' + id);
        
        if (id.name.value == "") { 
          alert("Vyplňte Vaše meno a priezvisko!");
          id.name.focus();
          return false; 
        }
        if (id.tel.value == "" && id.email.value == "") { 
          alert("Vyplňte Váš emailový, alebo telefonický kontakt!");
          id.email.focus();
          return false; 
        }
        if (id.text.value=="") { 
          alert("Nie je možné odoslať formulár bez textu!");
          id.text.focus();
          return false; 
        }	
	}  
	
  function ReferenceAddress(ida,id,lang) {
        
        window.open("./script/mailme.php?ida="+ida+"&id="+id+"&lang="+lang,"Poslat_info","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=no,top=50,left=50,width=350,height=200");
  }
-->
