function SelectDatePickerDropdown(oObject, value) {
  for(i=0;i<oObject.options.length;i++) {
    if (oObject.options[i].value == value) oObject.options[i].selected = true;
  }
}

function SetBookingEndDateBoxHome() {
  if (document.homeSearchBox.elements['search_date_from'].options.selectedIndex >= document.homeSearchBox.elements['search_date_to'].options.selectedIndex) {
    document.homeSearchBox.elements['search_date_to'].options.selectedIndex = document.homeSearchBox.elements['search_date_from'].options.selectedIndex + 1
  }  
}

function SetBookingEndDateBoxDetail() {
  if (document.searchbox.elements['search_date_from'].options.selectedIndex >= document.searchbox.elements['search_date_to'].options.selectedIndex) {
    document.searchbox.elements['search_date_to'].options.selectedIndex = document.searchbox.elements['search_date_from'].options.selectedIndex + 1
  }  
}


