<!-- JavaScript
	function calendar_1() {
		var	date, month, day, week, holiday, msg;
		var	msg_w = new Array(7);
		holiday	= false;
		msg	= "";
		// 記念日データ格納用配列作成
		var	msg_d = new Array(12);
		for (i = 0; i < 12; i++) {
			var	base = new Array(31);
			for (j = 0; j < 31; j++) {
				base[j] = "";}
			msg_d[i] = base;}
		// 日時情報取得
		date	= new Date(); month	= date.getMonth(); day = date.getDate(); week = date.getDay();
		// 曜日データ作成
		msg_w[0] = "(日)"; msg_w[1] = "(月)"; msg_w[2]	= "(火)"; msg_w[3]	= "(水)"; msg_w[4]	= "(木)"; msg_w[5]	= "(金)"; msg_w[6]	= "(土)";
		if ((msg_d[month][day-1]) != "") {
			// 祝日のチェック
			if ((msg_d[month][day-1].substring(0,1)) == "_") {
				holiday = true;
				msg = msg_d[month][day-1];
				msg = "　" + msg.substring(1, msg.length);}
			else {msg = "　" + msg_d[month][day-1];}}
		document.write("<TABLE border=0 CELLPADDING=0 border=0 width=0><TR>");
		if ((week == 0) || (holiday)) {// 日曜・祝日の処理
			document.write("<TD BGCOLOR=#FFFFFF class=ab12><FONT COLOR=#000000>");}
		else if (week == 6) {// 土曜の処理
			document.write("<TD BGCOLOR=#FFFFFF class=ab12><FONT COLOR=#000000>");}
		else {// 平日の処理
			document.write("<TD BGCOLOR=#FFFFFF class=ab12><FONT COLOR=#000000>");}
		document.write((month+1) + "月" + day + "日" + msg_w[week] + msg);
		document.write("</FONT></TD></TR></TABLE>");
	}//end -->