	function k2(idp) 
	{ 
		var w=450; 
		var h=255; 
		var NewWin=window.open('poslovnica.aspx?idp='+idp +'&jezik=cro','Detalji','width='+ w +',height='+ h +',toolbar=yes,location=no,scrollbars=yes,resizable=no'); 
		NewWin.focus() 
	} 
			 
	function OtvoriOglas(idp) 
	{ 
		var w=550; 
		var h=500; 
		var NewWin=window.open('posao.aspx?stranica='+idp +'&jezik=<%Response.Write(this.Jezik);%>','Posao','width='+ w +',height='+ h +',toolbar=yes,location=no,scrollbars=yes,resizable=no'); 
		NewWin.focus() 
	} 
			
	function popimage(imagesrc,naslov,naziv){
		var look='status=no,scrollbars=no, width=300,height=300';
		popwin=window.open('',naziv,look);
		popwin.document.open();
		popwin.document.write('<head><title>'+naslov+'</title></head><body onLoad="self.resizeTo(document.imgItemPic.width+10,document.imgItemPic.height+35)" leftmargin="0" topmargin="0">');
		popwin.document.write('<a href="javascript:this.window.close()"><img name="imgItemPic" alt="'+naslov+'" border="0" vspace="0" hspace="0" src="'+imagesrc+'"></a>');
		popwin.document.write('</body>');
		popwin.document.close();
		popwin.focus();
	}				
	
	function ShowNextChild(CurrentChildNumber)
	{
	    if (CurrentChildNumber==0)
	    {
	        var checkbox = this.document.getElementById('UC_upit1_CBdolozitesdjecom');
	        if (checkbox!=null)
	        {
	            if(checkbox.checked)
	            {
	                PrikaziDijete( CurrentChildNumber+1 );
	            }
	            else
	            {
	                var i;
	                for(i=1; i<6; i++)
	                   SakrijDijete(i);
	            }
	        }
	    }
	    else 
	    {
	        PrikaziDijete( CurrentChildNumber+1 );
	    }
	}
	
	function PrikaziDijete(ChildNumber)
	{
	     var nextTR = this.document.getElementById('dijete'+ChildNumber);
                          
	      if( nextTR != null )
	      {	
	            if(navigator.appName=="Microsoft Internet Explorer")
	             {
	                nextTR.style.display = "block";
	             }
	      else
	            nextTR.style.display = "table-row";
	      }
	}
		
	function SakrijDijete(ChildNumber)
	{
	     var nextTR = this.document.getElementById('dijete'+ChildNumber);
    	    
	      if( nextTR != null )
	      {	
	            nextTR.style.display = "none";
	      }
	}
	
					
	startList = function() {
		if (document.all && document.getElementById) {
			navRoot = document.getElementById("dmenu");
			for (i=0; i < navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}	
    window.onload=startList;