/*
 * Countdown Script 
 */

function ShowTimes() {
  var now = new Date();
  var hrs = 23-now.getHours();
  var mins = 59-now.getMinutes();
  var secs = 59-now.getSeconds();
  var str = '';
  str = ' '+hrs+' HRS '+mins+' MIN '+secs+' SEC ';
  document.getElementById('countdownToMidnight').innerHTML = str;
}
