function ClockString(dt)
{
	var stemp, ampm ;
	var dt_year = dt.getYear() ;
	var dt_month = dt.getMonth() + 1 ;
	var dt_day = dt.getDate() ;
	var dt_hour = dt.getHours() ;
	var dt_minute = dt.getMinutes() ;
	var dt_second = dt.getSeconds() ;
	dt_year = dt_year.toString() ;
	if (0 <= dt_hour && dt_hour < 12)
	{
//		ampm = 'AM' ;
		ampm = '上午' ;
		if (dt_hour == 0) dt_hour = 12 ;		
	} else {
//		ampm = 'PM' ;
		ampm = '下午' ;
		dt_hour = dt_hour - 12 ;
		if (dt_hour == 0) dt_hour = 12 ;		
	}
	if (dt_minute < 10)
		dt_minute = '0' + dt_minute ;
	if (dt_second < 10)
		dt_second = '0' + dt_second ;
//	stemp = dt_month + '/' + dt_day + '/' + dt_year.substr(2,2) ;
//	stemp = stemp + ' ' + dt_hour + ":" + dt_minute + ":" + dt_second + ' ' + ampm ;
	stemp =  dt_year + '年' + dt_month + '月' + dt_day + '日';
	stemp = stemp + "<br>" + ampm +　dt_hour + "時" + dt_minute + "分" ;
//	stemp = stemp + ' ' +  ampm +　dt_hour + ":" + dt_minute + ":" + dt_second + ' ' ;
	return stemp ;
}


