		/* novi prozor	*/
		function open_win(t,x,y) {
			if ((t) && (t != null)) {
	    		pWindow = open(t,"np","width="+x+",height="+y+",menubar=no,scrollbars=no,resizable=yes");
	        	pWindow.focus();
	    	}
		}

		function go(url) {
			if (url.charAt(0) == '/') location.href = url;
			else location.href = '<? echo $GLOBALS["conf"]->web->home_url ?>' + url;
		}

				
		function visibleclick(id)
		{
		   if (document.getElementById(id).style.display=='none')
		     document.getElementById(id).style.display='';
		   else
		     document.getElementById(id).style.display='none';
		
		}
		
		function displayclick(id, action)
		{
		/*
		// Imamo definisanu akciju
		  var idLink = id + "_link";
		  var idText = id + "_text";
		
		   if (action=='on') {
		     document.getElementById(idText).style.display='';
		     document.getElementById(idLink).style.display='none';
		   }
		   else {
		     document.getElementById(idText).style.display='none';
		     document.getElementById(idLink).style.display='';
		  }
		*/
		   if ( (action=='on') && (document.getElementById(id).style.display=='none') ) {
		     document.getElementById(id).style.display='';
		   }
		   else {
		     document.getElementById(id).style.display='none';
		  }
		
		/*
		// Ovo je opcija da pali i gasi sam na osnovu provere da li jeukljucen
		   if (document.getElementById(id).style.display=='none') {
		     document.getElementById(id).style.display='';
		   }
		   else {
		     document.getElementById(id).style.display='none';
		  }
		*/
		
		  return null;
		}