<!--
function PageDate()
{
	currentDate = new Date()
	with (currentDate)	
          {
		day=getDay()
		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')}
		month=getMonth()+1
		this.document.write(' '+getDate()+'-'+month+'-'+getFullYear())
	}	
	document.write('<br>')
}

PageDate()

// -->