﻿/*
#Region "History"
'20100205 - RH - Script file added
'20100211 - RH - Pass search parameters onto SearchBox
'20100212 - RH - Set default date of calendar using hidden field
#End Region
*/

function search(){

 var s = '/Search.aspx?';
        s += 'Type=';
        s += $('#dd_tourtype').val();

        
        s += '&Month=';
        s += $('#dd_month').val();
       
        s += '&Country=';
        s += $('#dd_country').val();
        
        s += '&Airport=';
        s += $('#dd_departing_airport').val();
        
        s += '&CoachArea=';
        s += $('#dd_coach_area').val();
        
        s += '&CoachPickup=';
        s += $('#dd_coach_pickup').val();
     

  
        document.location.href = s;


}

