// 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_concorso(page, action, idconcorso){
	document.getElementById("page").value = page;
	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();
}