<!--
function checkFlightOnlyForm(fId)
{
	if(fId.airportfrom.selectedIndex == 0)
	{ alert("Please select a departure airport!"); fId.airportfrom.focus(); return false; }
	else if(fId.airportto == undefined && (fId.lookup.value.length <= 2 || fId.lookup.value == "- Enter a destination -"))
	{ alert("Please enter a destination (min. 3 characters)!"); fId.lookup.focus(); return false; }
	else if(fId.airportto != undefined && fId.airportto[fId.airportto.selectedIndex].value == "" && (fId.lookup.value.length <= 2 || fId.lookup.value == "- Enter a destination -"))
	{ alert("Please confirm your destination or enter a new search (min. 3 characters)!"); fId.airportto.focus(); return false; }
	else if(checkValidDate(fId) == false)
	{ alert("Please select an alternative departure date!\nThe date you have selected is unavailable."); fId.startdate_d.focus(); return false; }
	else if(checkTimeTravel(fId) == false)
	{ alert("Please select an alternative return date!\nYour departure date is after your return date."); fId.enddate_d.focus(); return false; }
	else if(fId.seats_adult.selectedIndex == 0 && fId.seats_child.selectedIndex == 0 && fId.seats_infant.selectedIndex == 0)
	{ alert("Please enter at least one passenger!"); fId.seats_adult.focus(); return false; }
	else
	{ return true; }
}
// -->
