/* STEVE HUNTON - 29 Jan 01 */

<!--
function get4DigitYear(yrValue)
{
	yrValue += (yrValue < 1900) ? 1900 : 0
    return yrValue
}
today = new Date();
weekday = today.getDay();									
document.write();

if (weekday == 0) document.write('Sun');
if (weekday == 1) document.write('Mon');
if (weekday == 2) document.write('Tue');
if (weekday == 3) document.write('Wed');
if (weekday == 4) document.write('Thu');
if (weekday == 5) document.write('Fri');
if (weekday == 6) document.write('Sat');

document.write(', ');
month = today.getMonth();

if (month == 0) document.write('Jan');
if (month == 1) document.write('Feb');
if (month == 2) document.write('Mar');
if (month == 3) document.write('Apr');
if (month == 4) document.write('May');
if (month == 5) document.write('Jun');
if (month == 6) document.write('Jul');
if (month == 7) document.write('Aug');
if (month == 8) document.write('Sep');
if (month == 9) document.write('Oct');
if (month == 10) document.write('Nov');
if (month == 11) document.write('Dec');
date = today.getDate();
year=get4DigitYear(today.getYear());
document.write (' ', date, ', ',year);
document.write ();
// -->