
// menu principale
var menu = new Array('m1','m2');
function showhide(obj){
for(i=0;i<2;i++){
  document.getElementById(menu[i]).style.display="none";
 }
  document.getElementById(obj).style.display="block";
}

//popup
function popup(URL,NOME,WIDTH,HEIGHT,PROPRIETA) {
	
	//alert(PROPRIETA);
	if(PROPRIETA == ''){
		PROPRIETA = 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0';
	}
	win = window.open(URL,NOME,PROPRIETA + ',width=' + WIDTH + ',height=' + HEIGHT + '');
	
	//qui ridimensiono il popup...così se lo stesso popup è già aperto gli cambio le dimensioni...
	H = parseInt(HEIGHT) + 59; 
	W = parseInt(WIDTH) + 10;
	win.resizeTo(W,H);
	win.focus();
}

//mostra nascondi
function mostra_nascondi(ID,DISPLAY){
	//if(document.getElementById(ID).style.display == 'block' || document.getElementById(ID).style.display == 'inline' || document.getElementById(ID).style.display == ''){
	if(document.getElementById(ID).style.display == 'block' || document.getElementById(ID).style.display == 'inline'){
		document.getElementById(ID).style.display = 'none';
	} else {
		document.getElementById(ID).style.display = DISPLAY;
	}
}

function show(obj){
  document.getElementById(obj).style.display="block";
}	

function hide(obj){
  document.getElementById(obj).style.display="none";
}	

function visualizza_campo(){
	sel = document.disponibilita.modalita.selectedIndex
	//alert(document.disponibilita.modalita.options[sel].value);
	if(document.disponibilita.modalita.options[sel].value == 'mail'){
		document.getElementById('campo_mail').style.display = "block";
		document.getElementById('campo_telefono').style.display = "none";
		document.getElementById('campo_fax').style.display = "none";
	} else if(document.disponibilita.modalita.options[sel].value == 'telefono'){
		document.getElementById('campo_mail').style.display = "none";
		document.getElementById('campo_telefono').style.display = "block";
		document.getElementById('campo_fax').style.display = "none";
	} else if(document.disponibilita.modalita.options[sel].value == 'fax'){
		document.getElementById('campo_mail').style.display = "none";
		document.getElementById('campo_telefono').style.display = "none";
		document.getElementById('campo_fax').style.display = "block";
	} else {
		document.getElementById('campo_mail').style.display = "none";
		document.getElementById('campo_telefono').style.display = "none";
		document.getElementById('campo_fax').style.display = "none";
	}
}
