function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) 
		selObj.selectedIndex=0;
}



/**** finestre popup ****/
function popup(){
	newwin = window.open('','win_img','width=730, height=480,scrollbars=0,status=0,statusbar=0,toolbar=no,location=no,menubar=no,resizable=no,top=20,left=20,screenX=20,screenY=20');
	newwin.focus();
}

function imgpopup(){
	newwin = window.open('','pgpreview','width=520, height=425,scrollbars=0,status=0,statusbar=0,toolbar=no,location=no,menubar=no,resizable=no,top=20,left=20,screenX=20,screenY=20');
	newwin.focus();
}



/**** tutte le pagine con testo breve / integrale ****/
function mostra(id){
	document.getElementById('testo_mini_'+id).style.display ='None';
	document.getElementById('testo_max_'+id).style.display ='';
}

function nascondi(id){
	document.getElementById('testo_max_'+id).style.display ='None';
	document.getElementById('testo_mini_'+id).style.display ='';
}



/**** info privacy ****/
function mostra_informa(){
	document.getElementById('testo_informativa_1').style.display ='None';
	document.getElementById('testo_informativa_2').style.display ='';
}

function nascondi_informa(){
	document.getElementById('testo_informativa_1').style.display ='';
	document.getElementById('testo_informativa_2').style.display ='None';
}



/**** colonna dx bilanci/progetti ****/
function mostra_dx(id){
	document.getElementById('el'+id+'Child').style.display ='';
	document.getElementById('el'+id+'Parent').style.display ='None';
}

function nascondi_dx(id){
	document.getElementById('el'+id+'Child').style.display ='None';
	document.getElementById('el'+id+'Parent').style.display ='';
}



/**** colonna dx bilanci/progetti per js attivo/no ****/
function mostra_jdx(id){
	document.getElementById('el'+id+'Child').className ='';
	document.getElementById('el'+id+'Parent').className ='menu_hidden';
}

function nascondi_jdx(id){
	document.getElementById('el'+id+'Child').className ='menu_hidden';
	document.getElementById('el'+id+'Parent').className ='menu_right';
}



