var GreenbrierProductName = new Array(11)
   GreenbrierProductName[0] = '';
var GreenbrierProductCost = new Array(11)
   GreenbrierProductCost[0] = '';

   GreenbrierProductName[1] ='Auburgine';
   GreenbrierProductCost[1] ='115.00';

   GreenbrierProductName[2] ='Burgundy';
   GreenbrierProductCost[2] ='115.00';

   GreenbrierProductName[3] ='Colonial Blue';
   GreenbrierProductCost[3] ='115.00';

   GreenbrierProductName[4] ='Cream';
   GreenbrierProductCost[4] ='115.00';

   GreenbrierProductName[5] ='Golden';
   GreenbrierProductCost[5] ='115.00';

   GreenbrierProductName[6] ='Mauve';
   GreenbrierProductCost[6] ='115.00';

   GreenbrierProductName[7] ='Navy';
   GreenbrierProductCost[7] ='115.00';

   GreenbrierProductName[8] ='Peach';
   GreenbrierProductCost[8] ='115.00';

   GreenbrierProductName[9] ='Pink';
   GreenbrierProductCost[9] ='115.00';

   GreenbrierProductName[10] ='Taupe';
   GreenbrierProductCost[10] ='115.00';

   GreenbrierProductName[11] ='Plaid-Blue, Yellow, White';
   GreenbrierProductCost[11] ='135.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

