<!-- Hide
Stamp = new Date();

if (Stamp.getMonth() == 0) {
 Month = "January";
}

if (Stamp.getMonth() == 1) {
 Month = "February";
}

if (Stamp.getMonth() == 2) {
 Month = "March";
}

if (Stamp.getMonth() == 3) {
 Month = "April";
}

if (Stamp.getMonth() == 4) {
 Month = "May";
}

if (Stamp.getMonth() == 5) {
 Month = "June";
}

if (Stamp.getMonth() == 6) {
 Month = "July";
}

if (Stamp.getMonth() == 7) {
 Month = "August";
}
if (Stamp.getMonth() == 8) {
 Month = "September";
}
if (Stamp.getMonth() == 9) {
 Month = "October";
}
if (Stamp.getMonth() == 10) {
 Month = "November";
}

if (Stamp.getMonth() == 11) {
 Month = "December";
}

document.write("" + Month + " " + Stamp.getDate() + ", " + (Stamp.getYear()<2000 ? Stamp.getYear()+1900 : Stamp.getYear() ) + ' ');

var Hours;
var Mins;
var Time;
Hours = Stamp.getHours();

if (Hours >= 12) {
 Time = " p.m.";
}
else {
 Time = " a.m.";
}

if (Hours >= 18) {
}

if (Hours > 12) {
 Hours -= 12;
}

if (Hours == 0) {
 Hours = 12;
}

Mins = Stamp.getMinutes();

if (Mins < 10) {
 Mins = "0" + Mins;
}
	
//document.write("" + Hours + ":" + Mins + Time + "<br>");
// -->
