//*************************************************************************************
//
// This Document is Copy written: 
// Copyright (c) 1997-2000 Iceberg Computers. All Rights Reserved. 
// 
// and Classified:
// This Information is Classified for the use/viewing of Iceberg Computers Staff only.
// All other use/viewing of this data is strictly prohibited!
//
//*************************************************************************************


<!-- Begin
d = new Array(
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
);
m = new Array(
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
);

today = new Date();
day = today.getDate();
year = today.getYear();

if (year < 2000)    
year = year + 1900; 

end = "th";
if (day==1 || day==21 || day==31) end="st";
if (day==2 || day==22) end="nd";
if (day==3 || day==23) end="rd";
day+=end;

document.write("<left>");
document.write(d[today.getDay()]+", "+m[today.getMonth()]+" ");
document.write(day);
document.write(",&nbsp;");
document.write(year);
document.write("</left>");
// End -->
