
<!-- 
var term = 7; // 表示月数
var today = new Date();
var cYear = today.getFullYear();
var cMonth = today.getMonth();
var i;
var std;
optC = "<select id='mon' tabindex='1' class='search_w_mon' name='k_ym'>";
optN = "";
for (i=0; i<term; i++) {
  cMonth++;
  if (cMonth > 12) {
    cMonth = 1;
    cYear++;
  }
  fcMonth = cMonth;
  if (cMonth < 10) { fcMonth = "0" + cMonth; }
  vcMonth = cMonth * 1;
  if (i == 0) { std = "selectedi=\"selected\""; }
  else { std = ""; }
  optC = optC + "<option value='"+cYear+fcMonth+"' "+std+">"+cYear+"年"+vcMonth+"月</option>\n";
}
optC = optC + "</select>";

function new_win(){
	//window.open("http://www.489.jp/rwrs/vroom2/list1.php","","");
	window.open("http://www.489.jp/rwrs/vroom2/list1.php","","");
}
// -->

