var GreenbrierProductName = new Array(9)
   GreenbrierProductName[0] = '';
var GreenbrierProductCost = new Array(9)
   GreenbrierProductCost[0] = '';

   GreenbrierProductName[1] ='Santa with Sheep';
   GreenbrierProductCost[1] ='35.00';

   GreenbrierProductName[2] ='Santa with Bell';
   GreenbrierProductCost[2] ='24.95';

   GreenbrierProductName[3] ='Santa with Tree';
   GreenbrierProductCost[3] ='35.00';

   GreenbrierProductName[4] ='Santa with Birds';
   GreenbrierProductCost[4] ='35.00';

   GreenbrierProductName[5] ='Santa with Cat';
   GreenbrierProductCost[5] ='28.00';

   GreenbrierProductName[6] ='Santa with Church';
   GreenbrierProductCost[6] ='42.00';

   GreenbrierProductName[7] ='Santa with Pipe';
   GreenbrierProductCost[7] ='28.00';

   GreenbrierProductName[8] ='Santa with Pear Tree';
   GreenbrierProductCost[8] ='35.00';

   GreenbrierProductName[9] ='Santa with Staff';
   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

