
Stamp = new Date();



document.write('<font face="Arial" style="font-size: 8pt" color="#2f6ea7"><B>'+"TIME:    " + (Stamp.getMonth() + 1) +"/"+Stamp.getDate()+ "/"+Stamp.getYear() + '</B></font>   ');



var Hours;



var Mins;



var Time;



Hours = Stamp.getHours();



if (Hours >= 12) {



Time = " AM";



}



else {



Time = " PM";



}



if (Hours > 12) {



Hours -= 12;



}



if (Hours == 0) {



Hours = 12;



}



Mins = Stamp.getMinutes();



if (Mins < 10) {



Mins = "0" + Mins;



}    



document.write('<font face="Arial" style="font-size: 8pt" color="#2f6ea7"><B>' + Hours + ":" + Mins + Time + '</B></font>');


