
function onLoadRicerca(){
	document.getElementById('idPortoPartT').onchange=cambiaPortoArrivo;
	document.getElementById('dataPartenzaT').onchange=verificaMese;
	document.getElementById('mesePartenzaT').onchange=verificaData;
	document.getElementById('dataRitornoT').onchange=verificaMese;
	document.getElementById('meseRitornoT').onchange=verificaData;
}


function cambiaPortoArrivo(){
	var vPortoArrivo = document.getElementById('idPortoPartT').value;
	var idPortoDestinazione = '';
	
	if (document.getElementById('idDestinazione')!=null)
		idPortoDestinazione = document.getElementById('idDestinazione').value;
	
	if (vPortoArrivo == 'ALL')
		vPortoArrivo == 0;
	
	getComboAjax('divPortoArrivo','portiArrivoTw',vPortoArrivo,idPortoDestinazione,'idPortoArrivoT','',msgSeleziona	, languageCode);
}


function cercaTraghetti(){
	var dtCheck = true;
	if (alertWrongOnly(msgIdPortoPartT, document.getElementById('idPortoPartT').value == 'ALL') 
				|| alertWrongOnly(msgIdPortoArrivoT, document.getElementById('idPortoArrivoT').value == 'ALL') 
				|| (document.getElementById('mesePartenzaT').value == 'ALL' && (dtCheck = alertWrong(msgDataPartenzaT, 'checkDate','dataPartenzaT',true)))
				|| (dtCheck && alertWrongOnly(msgMesePartenzaT, document.getElementById('mesePartenzaT').value == 'ALL'))
				){
					
		return false;
	}else{
		document.getElementById('sTraghetti').submit();
		
	}	
	
	
}
function verificaData(){
	if (document.getElementById('mesePartenzaT').value != 'ALL'){
		document.getElementById('dataPartenzaT').value = '';
	}
	if (document.getElementById('meseRitornoT').value != 'ALL'){
		document.getElementById('dataRitornoT').value = '';
	}
}

function verificaMese(){
	if (document.getElementById('dataPartenzaT').value != ''){
		document.getElementById('mesePartenzaT').value = 'ALL';
	}
	if (document.getElementById('dataRitornoT').value != ''){
		document.getElementById('meseRitornoT').value = 'ALL';
	}
}


function ordinaTraghetti(orderField){
	document.getElementById('orderBy').value=orderField;
	document.getElementById('sTraghetti').submit();
	
}

function prenotaCompagnia(linkPrenota){
	//if(linkPrenota.indexOf('http')==-1)
	//	linkPrenota = 'http://' + linkPrenota;
	location.href = linkPrenota;
	
}