var GreenbrierProductName = new Array(7)
   GreenbrierProductName[0] = '';
var GreenbrierProductCost = new Array(7)
   GreenbrierProductCost[0] = '';

   GreenbrierProductName[1] ='Garden Vegetable Square';
   GreenbrierProductCost[1] ='75.00';

   GreenbrierProductName[2] ='Garden with blue Pots';
   GreenbrierProductCost[2] ='88.00';

   GreenbrierProductName[3] ='Pumpkin';
   GreenbrierProductCost[3] ='88.00';

   GreenbrierProductName[4] ='Garden Vegetable Round';
   GreenbrierProductCost[4] ='88.00';

   GreenbrierProductName[5] ='Garden with Green Pots';
   GreenbrierProductCost[5] ='88.00';

   GreenbrierProductName[6] ='DragonFly';
   GreenbrierProductCost[6] ='88.00';

   GreenbrierProductName[7] ='Garden Vegetable Oval';
   GreenbrierProductCost[7] ='88.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

