function scheda_concorso(action, idconcorso){
	document.getElementById("idconcorso").value = idconcorso;
	document.getElementById("formMain").action = action;
	document.getElementById("formMain").submit();
}

function submit_prov(prov){
	document.getElementById("provincia").value = prov;
	document.getElementById("frmProv").submit();
}

function chiudi_popup(){
	document.getElementById("contenitore-popup").style.visibility = 'hidden';	
	return FALSE;
}