<!-- Begin
Stamp = new Date();
year = Stamp.getYear();
var Dayextension;
today = new Date();
var Month;
if (year < 2000) year = 1900 + year;

if ((Stamp.getMonth() + 1) == 1){
Month = "January";
}
else if ((Stamp.getMonth() + 1) == 2){
Month = "February";
}
else if ((Stamp.getMonth() + 1) == 3){
Month = "March"
}
else if ((Stamp.getMonth() + 1) == 4){
Month = "April";
}
else if ((Stamp.getMonth() + 1) == 5){
Month = "May";
}
else if ((Stamp.getMonth() + 1) == 6){
Month = "June";
}
else if ((Stamp.getMonth() + 1) == 7){
Month = "July";
}
else if ((Stamp.getMonth() + 1) == 8){
Month = "August";
}
else if ((Stamp.getMonth() + 1) == 9){
Month = "September";
}
else if ((Stamp.getMonth() + 1) == 10){
Month = "October";
}
else if ((Stamp.getMonth() + 1) == 11){
Month = "November";
}
else if ((Stamp.getMonth() + 1) == 12){
Month = "December";
}
else {
Month = "Error";
}

if (Stamp.getDate() == 1){
Dayextension = "st";
}
else if (Stamp.getDate() == 2){
Dayextension = "nd";
}
else if (Stamp.getDate() == 3){
Dayextension = "rd";
}
else if ((Stamp.getDate() > 3) && (Stamp.getDate() < 21)){
Dayextension = "th";
}
else if (Stamp.getDate() == 21){
Dayextension = "st";
}
else if (Stamp.getDate() == 22){
Dayextension = "nd";
}
else if (Stamp.getDate() == 23){
Dayextension = "rd";
}
else if ((Stamp.getDate() > 23) && (Stamp.getDate() < 31)){
Dayextension = "th";
}
else if (Stamp.getDate() == 31){
Dayextension = "st";
}
else {
Dayextension = "error";
}
document.write("<b><span class='search'>" +Month +" "+Stamp.getDate()+ Dayextension+ ", "+ year + '</span></b><BR>');
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('<span class="search">' + Hours + ':' + Mins + Time + '</span>');
// End -->