	var a;
	a=new Date();
	lm_year=a.getYear();
	if (lm_year<1000){ 				//just in case date is delivered with 4 digits
		if (lm_year<70){
		lm_year=2000+lm_year;
		}
		else lm_year=1900+lm_year;
	}								//end workaround
	lm_month=a.getMonth();
	arrMonths = new Array(12);
	arrMonths[0]="January";
	arrMonths[1]="February";
	arrMonths[2]="March";
	arrMonths[3]="April";
	arrMonths[4]="May";
	arrMonths[5]="June";
	arrMonths[6]="July";
	arrMonths[7]="August";
	arrMonths[8]="September";
	arrMonths[9]="October";
	arrMonths[10]="November";
	arrMonths[11]="December";
	strMonth=arrMonths[lm_month];
	lm_day=a.getDate();
	if (lm_day<10){
		lm_day='0'+lm_day;
	}
	lm_hour=a.getHours()-2;
	if (lm_hour<10){
		lm_hour='0'+lm_hour;
	}
	lm_minute=a.getMinutes()-31;
	if (lm_minute<0){
		lm_minute=60+lm_minute;
	}
	if(lm_minute<10){
		lm_minute='0'+lm_minute;
	}
	document.write(lm_day + ' ' + strMonth + ', ' + lm_year + '  ' + lm_hour + ':'+lm_minute);
