function resetNtBook(sURL)
{
  // Reset the NTBook box to be "nothing"
  var selectBox = document.getElementById( "ntBookSelect" );
  selectBox.options.selectedIndex = 0;
  return true;
}

function resetOtBook(sURL)
{
  // Reset the NTBook box to be "nothing"
  var selectBox = document.getElementById( "otBookSelect" );
  selectBox.options.selectedIndex = 0;
  return true;
}

function clearForm()
{
  var otBookSelect = document.getElementById( "otBookSelect" );
  otBookSelect.options.selectedIndex = 0;
  var ntBookSelect = document.getElementById( "ntBookSelect" );
  ntBookSelect.options.selectedIndex = 0;
  var speakerId = document.getElementById( "speakerId" );
  speakerId.options.selectedIndex = 0;
  var dayId = document.getElementById( "dayId" );
  dayId.options.selectedIndex = 0;
  var timeId = document.getElementById( "timeId" );
  timeId.options.selectedIndex = 0;
  var startDate = document.getElementById( "startDate" );
  startDate.value = "";
  var endDate = document.getElementById( "endDate" );
  endDate.value = "";
  return true;
}
