<!--
//Used in the Good Shepherd's Studio (http://www.goodshepherdstudio.org)

var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var myhours = time.getHours();
var ampm = (myhours >= 12) ? ' PM' : ' AM';
if(myhours == 0)
  myhours = 12;
else
  myhours = (myhours > 12) ? myhours - 12 : myhours;
var myminutes = time.getMinutes();
myminutes =  ((myminutes < 10) ? ':0' : ':') + myminutes;
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getFullYear();
if (year<100) year="19" + time.getFullYear();
else year=time.getFullYear();
document.write("<font style='font-size: 10pt; color: #FFFFFF'><center><b>" + lmonth + " ");
document.write(date + ", " + year + "</b></center>");
document.write("<center><b>" + myhours + myminutes + ampm + "</b>");
document.write("</center></font>");

//-->