<!--

function setSelect(value, box, checkvalue) 
{
   box.selectedIndex=parseInt(value);
   //alert("checkvalue is " + checkvalue);
   if((window.opener.document.forms['0'] != null) && (checkvalue == 'pickupMonthSelection'))
    {
       //alert("setTempReturnDropoffDate");
       window.opener.setTempReturnDropoffDate();
    }  
   
   self.close(); 
}
 
function setRadio(box) { box.checked=true; }
function setText(box,text) { box.value=(text)? text:""; }

//-->