  
  //查询航班信息
  function searchFlights(){
		/*
		if( $('startAP').value.length == 0){
			alert("请选择起飞城市！");
			$('startCity').focus();
			return;
		}
		
		if( $('endAP').value.length == 0){
			alert("请选择到达城市！");
			$('endCity').focus();
			return;
		}
	   if( $('date1').value.length == 0){
			alert("请选择起飞日期！");
			$('date1').focus();
			return;
		}
		if($('date2').value.length != 0)
		{
			if($('date2').value <= $('date1').value)
			{
				alert("返程时间应大于出发时间！");
				return;
			}
		}
		*/

		document.SearchTickets.action="../guoneijipiao/JipiaoChaxun_wait.jsp";
		document.SearchTickets.submit();

  }
  
  
