function initForm()
{
  Today = new Date();
  document.info.amonth.selectedIndex = Today.getMonth();
  document.info.aday.selectedIndex = Today.getDate();
  document.info.dmonth.selectedIndex = Today.getMonth();
  document.info.dday.selectedIndex = Today.getDate();
}

function setAccom() 
{
  if (document.info.accomodation.selectedIndex == 0)
  {
     document.info.bed.selectedIndex = 0;
     document.info.view.checked = false;
  }
  else
  {
     document.info.bed.selectedIndex = 0;
  }
}

function setBed() 
{
  if (document.info.bed.selectedIndex == 1 && document.info.accomodation.selectedIndex == 0 )
  {
     document.info.view.checked = true;
  }
}

function setMonth() 
{
  document.info.dmonth.selectedIndex = document.info.amonth.selectedIndex;
}

function setDay() 
{
  document.info.dday.selectedIndex = document.info.aday.selectedIndex;
}
