<!--
function PageDate()
{
	currentDate = new Date()
	with (currentDate)
          {
		day=getDay()
		month=getMonth()+1
		year=getYear()
	if (day==1){document.write('Monday ')}
	if (day==2){document.write('Tuesday ')}
	if (day==3){document.write('Wednesday ')}
	if (day==4){document.write('Thursday ')}
	if (day==5){document.write('Friday ')}
	if (day==6){document.write('Saturday ')}
	if (day==0){document.write('Sunday ')}
	document.write(', ')

	if (month==1){document.write('January  ')}
	if (month==2){document.write('February  ')}
	if (month==3){document.write('March  ')}
	if (month==4){document.write('April  ')}
	if (month==5){document.write('May ')}
	if (month==6){document.write('June  ')}
	if (month==7){document.write('July  ')}
	if (month==8){document.write('August  ')}
	if (month==9){document.write('September  ')}
	if (month==10){document.write('October  ')}
	if (month==11){document.write('November  ')}
	if (month==12){document.write('December  ')}
	document.write(' ')
		this.document.write(' '+getDate()+', '+year)
	}
	
}

PageDate()

// -->
