function changeYear(){
		
		var frm=document.getElementById("year");
		var val=frm.selectedIndex;
		
		switch(val){
			case 0:
				false;
				break;
			case 1:
				window.open('http://www.sichouyouran.jp/2010/index.html','2010','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
			case 2:
				window.open('http://www.sichouyouran.jp/2009/index.html','2009','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
			case 3:
				window.open('http://www.sichouyouran.jp/2008/index.html','2008','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
			case 4:
				window.open('http://www.sichouyouran.jp/2007/index.html','2007','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
			case 5:
				window.open('http://www.sichouyouran.jp/2006/index.html','2006','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
			case 6:
				window.open('http://www.sichouyouran.jp/2005/index.html','2005','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
		}
				
	}
	
function windowClose(){
	window.close();
	}
	
function backTop(){
	window.location.href="http://www.sichouyouran.jp/";
	}
	
function chkAll(tf){
		for( i=116 ; i<135 ; i++ ){
			// 116番目から135番目までのチェックボックスを状態を変更させる（年度のチェックボックスが増えるので毎年必ず1個は増加していく）
			document.search_frm.elements[i].checked = tf; // ON・OFFを切り替え
		}
	}
