// pop up foto scheda auto
function popup_scheda(url,width,height){
 window.open("" + url + "","","width=" + width + ",height=" + height);
}

// pop up photogallery
function popup_galleria(immagine,width,height){
 window.open("popup_scheda.htm?galleriaID=" + immagine + "&g=1","","width=" + width + ",height=" + height);
}

// pop up mappa
function popup_mappa(url,nome,impostazioni){
 window.open(url,"","width=429,height=365");
}

function mostra(ELEMENTO){
  document.getElementById(ELEMENTO).style.display="block";
}

function nascondi(ELEMENTO){
  document.getElementById(ELEMENTO).style.display="none";
}

function aspetta(messaggio_attendi,nome_form){
	document[nome_form].bottone.disabled = true;
	document[nome_form].bottone.value = messaggio_attendi + "...";
	document[nome_form].submit();
}

