function setClock () {
  var today = new Date();

  var h = today.getUTCHours();
  var m = today.getUTCMinutes();

  // add a zero in front of numbers<10
  h = checkTime(h);
  m = checkTime(m);
  document.getElementById("clock").innerHTML = h + ":" + m + " EVE Time";

}

function checkTime (i) {
  if (i < 10) {
    i = "0" + i;
  }
  return i;
}

setClock();
window.setInterval('setClock()', 10000);

