now = new Date();
localtime = now.toLocaleString();
ampmstrip = localtime.lastIndexOf(" ");
localtime = localtime.substring(0, ampmstrip);
timestrip = localtime.lastIndexOf(" ");
localtime = localtime.substring(0, timestrip);
document.write("<h8>" + localtime + "</h8>")