function Edate(){
	month = new Array('Jan.', 'Feb.', 'Mar.', 'Apr.', 'May', 'Jun.', 'Jul', 'Aug.', 'Sep.', 'Oct.', 'Nov.', 'Dec.');
	datetoday= new Date();
	this_month=month[datetoday.getMonth()];
	
    // document.write( 'Update on '        );
	document.write( this_month, ", ");
	document.write( datetoday.getDate (), ", ");
	document.write( datetoday.getFullYear ()       );
}


function Jdate(){
	datetoday= new Date();
    // document.write( '更新日 '        );
	document.write( datetoday.getFullYear(), "年 ");
	document.write( datetoday.getMonth()+1,  "月 ");
	document.write( datetoday.getDate (),    "日 ");
}

