var form = document.prenotazioni;
function set_mesi(check) {
	if (check==0 && form.PrenotaMmpartenza.selectedIndex < form.PrenotaMmarrivo.selectedIndex) form.PrenotaMmpartenza.selectedIndex = form.PrenotaMmarrivo.selectedIndex;
	else if (check==1 && form.PrenotaMmpartenza.selectedIndex < form.PrenotaMmarrivo.selectedIndex) form.PrenotaMmarrivo.selectedIndex = form.PrenotaMmpartenza.selectedIndex;
}
function set_giorni(check) {
	if (check==0 && form.PrenotaGgpartenza.selectedIndex < form.PrenotaGgarrivo.selectedIndex && form.PrenotaMmpartenza.selectedIndex <= form.PrenotaMmarrivo.selectedIndex) form.PrenotaGgpartenza.selectedIndex = form.PrenotaGgarrivo.selectedIndex;
	else if (check==1 && form.PrenotaGgpartenza.selectedIndex < form.PrenotaGgarrivo.selectedIndex && form.PrenotaMmpartenza.selectedIndex <= form.PrenotaMmarrivo.selectedIndex) form.PrenotaGgarrivo.selectedIndex = form.PrenotaGgpartenza.selectedIndex;
}