function submit_prov(prov){
	document.getElementById("provincia").value = prov;
	document.getElementById("frmProv").submit();
}
// FUNZIONE PER IL REINDIRIZZAMENTO DEL FORM
function submit_form(page){
	if (page.indexOf("php") != -1){
		document.getElementById("formMain").action = page;
	}
	else{
		//semplice passaggio di pagina
		document.getElementById("formMain").action = "";
		document.getElementById("page").value = page;
	}
	document.getElementById("formMain").submit();
}

function scelta_disciplina(){
	document.getElementById("page").value = 1;
	document.getElementById("formMain").submit();
}

function scheda_figura(page, action, idstruttura, idruolo){
	document.getElementById("page").value = page;
	document.getElementById("idstruttura").value = idstruttura;
	document.getElementById("ids").value = idruolo;
	document.getElementById("formMain").action = action;
	document.getElementById("formMain").submit();
}