function insertTimestamp(timestamp, id) {
  var d = new Date(timestamp*1000);
  document.getElementById(id).innerHTML = d.toLocaleString();
}
