function makeJSTStrngs(dtstr)	{
	d = new Date(dtstr);
	return d.getFullYear()+'年'+(d.getMonth()+1)+'月'+d.getDate()+'日';
}
