<!--
	var today = new Date();
	var cals_year = today.getYear();
	var cals_month = today.getMonth() + 1;
	var cals_day = today.getDate();
	if (cals_year < 1900) cals_year += 1900;
	var defaultBackgroundColors = new Object();
	var tos_year = cals_year;
	var tos_month = cals_month;
	var tos_day = cals_day;
	
	document.write('<select name="k_ym" style="width: 100px;">');
	for(i=0;i<3;i++){
		var printMonth = tos_month + i;
		var printYear = tos_year;
		if(printMonth > 12){
			printMonth = 1;
			printYear++;
		}
		if(printMonth < 10){
			printMonth = "0" + printMonth;
		}
		document.write('<option value="'+printYear+printMonth+'">'+printYear+'年'+printMonth+'月</option>');
	}
	document.write('</select>');
	document.write(' <select name="k_d" style="width: 40px;">');
	var selected;
	for(i=1;i<32;i++){
		if(tos_day == i){
			selected = " selected";
		}
		else {
			selected = "";
		}
		document.write('<option value="'+i+'"'+selected+'>'+i+'</option>');
	}
	document.write('</select>');

//-->