
	function assegnaMeseAnno(){
		document.Form3.giornomeseanno.value=Form3.mesi.value+Form3.anni.value;
	}

	function assegnaGiornoMeseAnno(){
		document.Form3.giornomeseanno.value=Form3.giorni.value+Form3.mesi.value+Form3.anni.value;
	}

	function agisci(){
		document.form1.tasto.disabled=false;
		document.form2.tasto.disabled=false;
	}



function cambiamese(cheagenda, giornomeseanno){

	document.getElementById('loa').style.display="block";

	if (cheagenda==5){
		_url="corpo_agenda_int.php?ajax=1&cheagenda=5&giornomeseanno="+giornomeseanno;
	}
	else {
		_url="corpo_agenda.php?ajax=1&cheagenda="+cheagenda+"&giornomeseanno="+giornomeseanno;
	}

	httpRequest("GET", _url, true, handleResponseAgendaTop);

	if (cheagenda==1){var chelink="spettacoli";}
	if (cheagenda==2){var chelink="stages";}
	if (cheagenda==3){var chelink="audizioni";}
	if (cheagenda==4){var chelink="eventi";}

}




function handleResponseAgendaTop(){
	if (request.readyState==4){
		if (request.status==200){
			var mex=request.responseText;

	document.getElementById('agenda').innerHTML=mex;
	document.getElementById('loa').style.display="none";

		} else {
			alert ("Problema di connessione");
		}
	} 
}