// JavaScript Document
function displayDate() {
  var now = new Date();
  var today = now.getDate();
  var month = now.getMonth();
  var year = now.getFullYear().toString().slice(2);

  document.write(month+"/"+today+"/"+year);
}