<!--
function getCurrentDate(){
	dayarray=new Array("sunday","monday","tuesday","wednesday","thursday","friday","Saturday")
	montharray=new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
	ndata=new Date();
	day=dayarray[ndata.getDay()];
	month=montharray[ndata.getMonth()];
	date=ndata.getDate();
	year=ndata.getFullYear();
	hours = ndata.getHours();
	mins = ndata.getMinutes();
	secs = ndata.getSeconds();
	if (hours < 10) {hours = "0" + hours; }
	if (mins < 10) {mins = "0" + mins; }
	if (secs < 10) {secs = "0" + secs; }

	datastr=(month +" "+ date +", "+ year);
	return datastr;

}
-->
