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/2009/index.html','2009','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
			case 2:
				window.open('http://www.sichouyouran.jp/2008/index.html','2008','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
			case 3:
				window.open('http://www.sichouyouran.jp/2007/index.html','2007','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
			case 4:
				window.open('http://www.sichouyouran.jp/2006/index.html','2006','location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes');
				break;
			case 5:
				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=115 ; i<134 ; i++ ){
			// 115番目から134番目までのチェックボックスを状態を変更させる
			document.search_frm.elements[i].checked = tf; // ON・OFFを切り替え
		}
	}