// postDate
// Kurt Grinsteiner 06/04/00
//

theDate = new Date();

strDay = theDate.getDate();
strYear = theDate.getFullYear();

switch(theDate.getMonth()) {
	case 0:
	 strMonth = 'January';
	 break;
	case 1:
	 strMonth = 'February';
	 break;
	case 2:
	 strMonth = 'March';
	 break;
	case 3:
	 strMonth = 'April';
	 break;
	case 4:
	 strMonth = 'May';
	 break;
	case 5:
	 strMonth = 'June';
	 break;
	case 6:
	 strMonth = 'July';
	 break;
	case 7:
	 strMonth = 'August';
	 break;
	case 8:
	 strMonth = 'September';
	 break;
	case 9:
	 strMonth = 'October';
	 break;
	case 10:
	 strMonth = 'November';
	 break;
	case 11:
	 strMonth = 'December';
	 break;
}

strDate = strMonth + ' ' + strDay +', ' + strYear;

document.write ('<FONT FACE="ARIAL" SIZE="-2" COLOR="#FFFFFF">' + strDate + '</FONT>');

