﻿// JScript File
    function  SearchPage(Depart,Arrive,DepartDate,AirWay,FlightType,returnDate,middleCity,SecondDepartDate)
        {
            SecondDepartDate=document.getElementById(SecondDepartDate).value;
            DepartCity=document.getElementById(Depart).value;
            ArriveCity=document.getElementById(Arrive).value;
            DepartTime=document.getElementById(DepartDate).value;
            AirWayCode=document.getElementById(AirWay).value;
            returnDate=document.getElementById(returnDate).value;
            middleCity=document.getElementById(middleCity).value;
            Type=document.getElementById(FlightType).value;
            window.location="FlightResult.aspx?Depart="+DepartCity+"&Arrive="+ArriveCity+"&DepartDate="+DepartTime+"&AirWay="+AirWayCode+"&FlightType="+Type+"&returnDate="+returnDate+"&middleCity="+middleCity+"&SecondDepartDate="+SecondDepartDate;
        }
