//---------------------------------------------------------
// screenshot.js
//   Author: Captain-Yamagata
//----------------------------------------------------------

/**
 * 
 */
function DisplayDate(num) {
  var d = new Date();
  mm = d.getMonth() + 1;
  dd = d.getDate();

  if(d.getHours() < num) {
    dd = dd - 1;
  }
  document.write('&nbsp;', mm, '/', dd);
}

