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 ValidacijaFormeKontakt() 
 {
    var forma = document.forms.kontakt;
    
    if (forma.ime_prezime.value == '' || forma.email.value == '' || forma.mesto.value == '' || forma.pismo.value == '' || forma.code.value == '' )  
    {
      alert('Niste uneli potrebna polja!'); 
      return false;     
    }
    else
    return true; 
  }  
  
 function ValidacijaFormeKnjigaUtisaka() 
 {
    var forma = document.forms.knjiga_utisaka;
    
    if (forma.ime.value == '' || forma.email.value == ''  || forma.komentar.value == '' || forma.code.value == '' )  
    {
      alert('Niste uneli potrebna polja!'); 
      return false;     
    }
    else
    return true; 
  }
  
 
  
 function ValidacijaFormeRegistracija() 
 {
    var forma = document.forms.registracija;
    
    if (
    	forma.korisnik.value == '' || 
    	forma.lozinka1.value == '' || 
    	forma.lozinka2.value == '' || 
    	forma.ime_prezime.value == '' || 
    	forma.email.value == '' || 
    	forma.mesto.value == '' || 
    	forma.drzava.value == '' || 
    	forma.telefon.value == '' || 
    	forma.code.value == '' ||
    	forma.pravila.checked == false )  
    {
      alert('Niste uneli potrebna polja!'); 
      return false;     
    }
    else
    return true; 
  }  

   function ValidacijaFormePrijava() 
 {
    var forma = document.forms.prijava;
    
    if (forma.korisnik.value == '' || forma.lozinka.value == '')  
    {
      alert('Niste uneli potrebna polja!'); 
      return false;     
    }
    else
    return true; 
  }

  
  
function Validacija_NoviOglas() 
{
    var forma = document.forms.novi_oglas;
    
    if (
    	forma.naziv.value == '' || 
    	forma.id_kategorija.value == 'null' || 
    	forma.godiste.value == 'null' || 
    	forma.trajanje.value == 'null' || 
    	forma.tekst.value == '' || 
    	forma.mesto.value == '' || 
    	forma.cena.value == ''   )  
    {
      alert('Niste uneli potrebna polja!'); 
      return false;     
    }
    else
    return true; 
} 

function Validacija_NoviOglas2() 
{
    var forma = document.forms.novi_oglas;
    
    if (
    	forma.naziv.value == '' || 
    	forma.id_kategorija.value == 'null' || 
    	forma.godiste.value == 'null' || 
    	forma.tekst.value == '' || 
    	forma.mesto.value == '' || 
    	forma.cena.value == ''   )  
    {
      alert('Niste uneli potrebna polja!'); 
      return false;     
    }
    else
    return true; 
} 