//<!-- hide javascript
function StartDate() {
TMonth = new Array('Jan', 'Feb', 'March', 'April', 'May', 'June', 'July','August', 'Sept', 'Oct', 'Nov','Dec');
TDate = new Date();
CurYear = TDate.getYear();
	// browser bug..some browsers return 100 for the year 2000..
	// some correctly return the full year.
	// I added the CurYear < 100 in case there are some browsers in use
	// that return a correct 2-digit year (ex. '00','01', etc...)
	if (CurYear < 1980) // some folks may have their system clock set back...so we'll just use 1980
	{
		if(CurYear < 100)
		{
			CurYear += 2000;
		} else {
			CurYear += 1900;
		}
	}

CurMonth = TDate.getMonth();
CurDay= TDate.getDate();
TheDate = TMonth[CurMonth] + ' ';
TheDate += CurDay + ', ' + CurYear;
return  TheDate;
}
// done hiding -->