<!--

	// ページの最終更新日付を取得
	var dateObj = new Date(document.lastModified);
    var dtYear;
    var dtMonth;
    var dtDay;

	// 年・月・日の取得
	dtYear = dateObj.getFullYear();
	dtMonth = dateObj.getMonth();
	dtDay = dateObj.getDate();

	// 月の調整
	dtMonth = dtMonth + 1;

	// 桁数の調整
	if ( dtMonth < 10 ) {
		dtMonth = "0" + dtMonth;
	}
	if ( dtDay < 10 ) {
		dtDay = "0" + dtDay;
	}

function winOpen(url,wid,hei){
	sw = screen.availWidth;
	sh = screen.availHeight;
	wl = (sw-wid)/2;
	wt = (sh-hei)/2;
	win = window.open (url,"SmallWindow","width=" + wid + ",height=" + hei + ",,toolbar=yes,location=yes,directories=no,menubar=no,resizable=yes,scrollbars=yes,left=" + wl + ",top=" + wt);
}

//-->