function doSearchForViajes(factory){
	if (validFormForViajes()){
		document.simpleViajes.factory.value=factory;
		document.simpleViajes.submit();
	}
}
function validFormForViajes(){
	if (document.simpleViajes.destino.value.length<1){
		alert("Por favor entre un valor para el \'destino\'.");
		try{document.simpleViajes.destino.focus();}catch(ignored){}
	}else if (document.simpleViajes.fecha.value.length<1){
		alert("Por favor entre un valor para la \'fecha\'.");
		try{document.simpleViajes.fecha.focus();}catch(ignored){}
	}else return true;
	return false;
}
