function emptySearch(contents)
{
  if(contents == 'HH')
  {
    document.getElementById('pref_time_hour').value = '';
  }
  
  if(contents == 'MM')
  {
    document.getElementById('pref_time_min').value = '';
  }
}

function emptySearch2(contents)
{
  if(contents == 'HH')
  {
    document.getElementById('booking_details_hour').value = '';
  }
  
  if(contents == 'MM')
  {
    document.getElementById('booking_details_min').value = '';
  }
}