function process_form_edi()
{
    thisForm=document.SearchForm;
    thisForm.InMonth.value=thisForm.arrivalDateMonth.options[thisForm.arrivalDateMonth.selectedIndex].value;
    thisForm.InDay.value=thisForm.arrivalDateDay.options[thisForm.arrivalDateDay.selectedIndex].value;
    thisForm.InYear.value=thisForm.arrivalDateYear.options[thisForm.arrivalDateYear.selectedIndex].value;
}//end process_form_edi


function process_form()
{
    thisForm=document.SearchForm;
    thisForm.inMonth.value=thisForm.arrivalDateMonth.options[thisForm.arrivalDateMonth.selectedIndex].value;
    thisForm.inDay.value=thisForm.arrivalDateDay.options[thisForm.arrivalDateDay.selectedIndex].value;
    thisForm.inYear.value=thisForm.arrivalDateYear.options[thisForm.arrivalDateYear.selectedIndex].value;
    thisForm.outMonth.value=thisForm.departureDateMonth.options[thisForm.departureDateMonth.selectedIndex].value;
    thisForm.outDay.value=thisForm.departureDateDay.options[thisForm.departureDateDay.selectedIndex].value ;
    thisForm.outYear.value=thisForm.departureDateYear.options[thisForm.departureDateYear.selectedIndex].value;
}//end process_form


function process_form_netrate()
{
    thisForm=document.SearchForm;
    thisForm.inMonth.value=thisForm.arrivalDateMonth.options[thisForm.arrivalDateMonth.selectedIndex].value;
    thisForm.inDay.value=thisForm.arrivalDateDay.options[thisForm.arrivalDateDay.selectedIndex].value;
    thisForm.inYear.value=thisForm.arrivalDateYear.options[thisForm.arrivalDateYear.selectedIndex].value;
}//end process_form_netrate

