/*var w = 400;
var h = 250;
var l = Math.floor((screen.width-w)/2);
var t = Math.floor((screen.height-h)/2);

function apriCerca() {	
	//window.open("/servizi/ricerca_pdv/ricerca_popup.html","Cerca", "menubar=no,width=840,height=630,toolbar=no,scrollbars=no,");
	window.open("/servizi/ricerca_pdv/ricerca_popup_temp.html","Cerca", "menubar=no,width=840,height=380,toolbar=no,scrollbars=no,");	
}

function apriFormRivenditore() {
	window.open("/servizi/rivenditori/modello.html","FormRivenditore", "menubar=no,width=425,height=860,toolbar=no,scrollbars=yes,left=" + l);
}*/

function toggleMenuRicevitori(sectionId, menuId){
    var str = sectionId + '_' + menuId;
	var obj = document.getElementById('menu_' + str);
	var objStyle = obj.style;
	if (objStyle.display == 'block'){
		objStyle.display = "none";
		document.getElementById("parent_" + str).style.background = "#7ccc46 url(/arearicevitori/images/tmplPubblico/bg_piu_menu.gif)";
	} else {
		objStyle.display = "block";
		document.getElementById("parent_" + str).style.background = "#7ccc46 url(/arearicevitori/images/tmplPubblico/bg_meno_menu.gif)";
	}
}

function toggleMenu(menuId, test){
	if(test)
		return toggleMenuRicevitori(menuId, test)
	var obj = document.getElementById('menu_' + menuId).style;
		if (obj.display == 'block'){
		obj.display = "none";
		document.getElementById("parent_" + menuId).style.background = "#7ccc46 url(/arearicevitori/images/tmplPubblico/bg_piu_menu.gif)";

		//firstLevelObj.className = "chiuso";
	} else {
		obj.display = "block";
		document.getElementById("parent_" + menuId).style.background = "#7ccc46 url(/arearicevitori/images/tmplPubblico/bg_meno_menu.gif)";
	}
	
}

var _statusMenu = "open";

function closeAll(countItemsMenu, test){
	if(test)
		return closeAllRicevitori(countItemsMenu, test)
	if (_statusMenu == "open"){
		_statusMenu = "close";
		document.getElementById('labelAll').innerHTML = "Apri tutto";
		document.getElementById('labelAll').style.background = " url(/arearicevitori/images/tmplPubblico/bg_apritutto.gif)";
		for (a=1;a <= countItemsMenu;a++){
			document.getElementById('menu_' + a).style.display = "none";
			document.getElementById("parent_" + a).style.background = "#7ccc46 url(/arearicevitori/images/tmplPubblico/bg_piu_menu.gif)";
		}
	} else {
		_statusMenu = "open";
		document.getElementById('labelAll').innerHTML = "Chiudi tutto";
		document.getElementById('labelAll').style.background = "url(/arearicevitori/images/tmplPubblico/bg_chiuditutto.gif)";
		for (a=1;a <= countItemsMenu;a++){
			document.getElementById('menu_' + a).style.display = "block";
			document.getElementById("parent_" + a).style.background = "#7ccc46 url(/arearicevitori/images/tmplPubblico/bg_meno_menu.gif)";
			
		}
	}
}

function closeAllRicevitori(countItemsMenu, sectionId){
	
	var label = 'labelAll_' + sectionId
	if (_statusMenu == "open"){
		_statusMenu = "close";
		document.getElementById(label).innerHTML = "Apri tutto";
		document.getElementById(label).style.background = " url(/arearicevitori/images/tmplPubblico/bg_apritutto.gif)";
		var a=1;
		var doc = document.getElementById('menu_' + sectionId + '_' + a);
		while(doc){
			doc.style.display = "none";
			document.getElementById("parent_" + sectionId + '_' + a).style.background = "#7ccc46 url(/arearicevitori/images/tmplPubblico/bg_piu_menu.gif)";
			doc = document.getElementById('menu_' + sectionId + '_' + (++a));
		}
	} else {
		_statusMenu = "open";
		document.getElementById(label).innerHTML = "Chiudi tutto";
		document.getElementById(label).style.background = "url(/arearicevitori/images/tmplPubblico/bg_chiuditutto.gif)";
		var a=1;
		var doc = document.getElementById('menu_' + sectionId + '_' + a);
		while(doc){
			doc.style.display = "block";
			document.getElementById("parent_" + sectionId + '_' + a).style.background = "#7ccc46 url(/arearicevitori/images/tmplPubblico/bg_meno_menu.gif)";
			doc = document.getElementById('menu_' + sectionId + '_' + (++a));
		}
	}
}
