	document.write('<div class=\"blockL\"><a href=\"/info/company/history1.htm\" target=\"_blank\" title=\"報知新聞140周年\"><img src=\"/img/140logo.gif\" width=\"85\" height=\"40\" alt=\"報知新聞140周年\" /></a></div>');
//----------------------------
//カレンダー
//----------------------------
//変数宣言
	var dtToday = new Date;
	//var strYear;
	//var strMonth;
	var strDate;
	//０から９までの画像を用意してください。
	//画像のURLを宣言します。
	var strPicture = new Array("/img/common/cal_d0.gif",
		"/img/common/cal_d1.gif",
		"/img/common/cal_d2.gif",
		"/img/common/cal_d3.gif",
		"/img/common/cal_d4.gif",
		"/img/common/cal_d5.gif",
		"/img/common/cal_d6.gif",
		"/img/common/cal_d7.gif",
		"/img/common/cal_d8.gif",
		"/img/common/cal_d9.gif");

	//年月日を取得
	//strYear = dtToday.getYear();
	strMonth = dtToday.getMonth() + 1;
	strDate = dtToday.getDate();

	//桁数を整理します
	//if (strMonth < 10)
	//{
	//	strMonth = "0" + strMonth;
	//}
	//if (strDate < 10)
	//{
	//	strDate = "0" + strDate;
	//}

	//数字に画像を当てるための準備です。
	var imgDate;
	//imgYear = strYear.toString();
	//imgMonth = strMonth.toString();
	imgDate = strDate.toString();

	//ここから表示
	//document.write("<img src='"+strPicture[imgYear.substring(0,1)]+"'>"+"<img src='"+strPicture[imgYear.substring(1,2)]+"'>"+"<img src='"+strPicture[imgYear.substring(2,3)]+"'>"+"<img src='"+strPicture[imgYear.substring(3,4)]+"'>"+"年<br>");
	document.write('<div class=\"calendar\"><div class=\"month\"><img src=\"/img/common/cal_m' +strMonth+ '.gif\" width=\"53\" height=\"13\" /></div>');
	if (strDate < 10) {
		document.write("<div class=\"daybox\"><div class=\"day\"><img src='"+strPicture[imgDate.substring(0,1)]+"'>"+"</div></div></div>");
	} else {
		document.write("<div class=\"daybox\"><div class=\"day\"><img src='"+strPicture[imgDate.substring(0,1)]+"'>"+"<img src='"+strPicture[imgDate.substring(1,2)]+"'>"+"</div></div></div>");
	}
