var GreenbrierProductName = new Array(8)
   GreenbrierProductName[0] = '';
var GreenbrierProductCost = new Array(8)
   GreenbrierProductCost[0] = '';

   GreenbrierProductName[1] ='Hole in the water';
   GreenbrierProductCost[1] ='38.00';

   GreenbrierProductName[2] ='Serious Golfer';
   GreenbrierProductCost[2] ='45.00';

   GreenbrierProductName[3] ='Life is too short';
   GreenbrierProductCost[3] ='38.00';

   GreenbrierProductName[4] ='Captains Judgment';
   GreenbrierProductCost[4] ='45.00';

   GreenbrierProductName[5] ='Lucky Irishman';
   GreenbrierProductCost[5] ='38.00';

   GreenbrierProductName[6] ='More Wine';
   GreenbrierProductCost[6] ='38.00';

   GreenbrierProductName[7] ='God Bless America';
   GreenbrierProductCost[7] ='38.00';

   GreenbrierProductName[8] ='Vermont';
   GreenbrierProductCost[8] ='38.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

