﻿function Today(){

Stamp = new Date();
document.write('<font face="Arial" style="font-size: 10px;" color="#ffffff"><B>'+(Stamp.getMonth() + 1) +"/"+Stamp.getDate()+ "/"+ Stamp.getFullYear() + '</B></font>');
var Hours;
var Mins;
var Time;
Hours = Stamp.getHours();
if (Hours >= 12) {
Time = " P.M.";
}
else {
Time = " A.M.";
}
if (Hours > 12) {
Hours -= 12;
}
if (Hours == 0) {
Hours = 12;
}
Mins = Stamp.getMinutes();
if (Mins < 10) {
Mins = "0" + Mins;
}    

document.write('&nbsp;&nbsp;<font face="Arial" style="font-size: 10px;" color="#ffffff"><B>' + Hours + ":" + Mins + Time + '</B></font>');

}
