
<!--


function writeOptions(startNumber, endNumber)
{
  var optionCounter;
  for (optionCounter = startNumber; optionCounter <= endNumber; optionCounter++)
  {
      document.write('<OPTION value=' + optionCounter + '>' + optionCounter);
  }
}

function writeMonthOptions()
{
   var theMonth;
   var monthCounter;
   var theDate = new Date();

   for (monthCounter = 0; monthCounter < 12; monthCounter++)
   {
      theDate.setMonth(monthCounter);
      theMonth = theDate.toString();
	  
      theMonth = theMonth.substr(4,3);
      
	
	  
   }
}


function window_onload()
{
   var theForm = document.search;
   var nowDate = new Date();

   theForm.checkInDate.options[nowDate.getDate() - 1].selected = true;

   
   theForm.checkInMonth.options[nowDate.getMonth()].selected = true;



}


//-->
