var GreenbrierProductName = new Array(9)
   GreenbrierProductName[0] = '';
var GreenbrierProductCost = new Array(9)
   GreenbrierProductCost[0] = '';

   GreenbrierProductName[1] ='Roots and Wings';
   GreenbrierProductCost[1] ='42.00';

   GreenbrierProductName[2] ='There is an Angel';
   GreenbrierProductCost[2] ='42.00';

   GreenbrierProductName[3] ='For Daughter in Law';
   GreenbrierProductCost[3] ='48.00';

   GreenbrierProductName[4] ='God Grant Me';
   GreenbrierProductCost[4] ='42.00';

   GreenbrierProductName[5] ='Good Friends';
   GreenbrierProductCost[5] ='48.00';

   GreenbrierProductName[6] ='Mother in Law';
   GreenbrierProductCost[6] ='38.00';

   GreenbrierProductName[7] ='Our Family';
   GreenbrierProductCost[7] ='48.00';

   GreenbrierProductName[8] ='Wishing';
   GreenbrierProductCost[8] ='48.00';

   GreenbrierProductName[9] ='I Have a Friend';
   GreenbrierProductCost[9] ='35.00';


function payPal_submit(){
thisForm=document.addToCart;
thisForm.amount.value=GreenbrierProductCost[thisForm.custom.value];
thisForm.os0.value=GreenbrierProductName[thisForm.custom.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

