function prikazi_veliku_sliku(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {  // v4.01
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\" title=\"'+alt+'\" />');  newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}


   function validacija_maila()
   {
     var pass;
     pass = true;
    
     if ((document.forms.mail.ime.value == '') || (document.forms.mail.prezime.value == '') || (document.forms.mail.email.value == '') || (document.forms.mail.mesto.value == '') || (document.forms.mail.poruka.value == ''))
     {
      pass = false; 
      alert('Niste uneli potrebna polja!'); 
      document.forms.mail.ime.focus();     
     }
               
      if (pass == true) 
      document.forms.mail.submit(); 
  } 
  
  function Validacija_Knjige() 
 {
    var pass;
    pass = true;
    
    if ((document.forms.knjiga.name.value == '') || (document.forms.knjiga.comment.value == '') || (document.forms.knjiga.kod.value == '')) 
    {
      alert('Niste uneli potrebna polja!'); 
      return false;
      document.forms.knjiga.name.focus();     
    }
    else
    return true;             
    
  }  
  