function _HpbDays()
{
this[0] = "日"; this[1] = "月"; this[2] = "火"; this[3] = "水";
this[4] = "木"; this[5] = "金"; this[6] = "土";
}
var now = new Date();
var yr  = now.getYear();
var mn  = now.getMonth() + 1;
var dt  = now.getDate();
var dy  = now.getDay();
var fyr = (yr < 1900) ? 1900 + yr : yr;
var dys = new _HpbDays();
var dyj = dys[dy];

var tag01 = '<p>&nbsp;</p><span class="stamp">サイト更新日　';
var tag02 = '</span><br><br><A href="../transaction.html" class="tokusho" target="toku">特定商取引に関する法律に基づく表示</A><p>&nbsp;</p>';


document.write(tag01 + fyr + "年" + mn + "月" + dt + "日" + tag02);

