// JS Meniu

function showMenu(id) 
{
	document.getElementById('secundar_'+id).style.visibility = 'visible';
}
function hideMenu(id) 
{
	document.getElementById('secundar_'+id).style.visibility = 'hidden';
}
function hideMenuSelectat(id) 
{
	document.getElementById('secundar_'+id).style.visibility = 'hidden';
}

// Functii ------------------------------------------------------------------------
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height) 
{
	if(popUpWin) 
	{
		if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = open(URLStr, 'popUpWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

// Harta site -----------------------------------------------------------------------------------

this.hartaSiteExpandabil = function(){
	var hartaSite = document.getElementById("hartaSite")
	if(hartaSite){

		this.listItem = function(li){
			if(li.getElementsByTagName("ul").length > 0){
				var ul = li.getElementsByTagName("ul")[0];
				ul.style.display = "none";
				var span = document.createElement("span");
				span.className = "inchis";
				span.style.cursor = "pointer";
				span.onclick = function(){
					ul.style.display = (ul.style.display == "none") ? "block" : "none";
					this.className = (ul.style.display == "none") ? "inchis" : "deschis";
				};
				li.appendChild(span);
			};
		};

		var items = hartaSite.getElementsByTagName("li");
		for(var i=0;i<items.length;i++){
			listItem(items[i]);
		};

	};	
};

window.onload = hartaSiteExpandabil;
