function nextSearch(nextpage){
	s_obj = document.getElementById('keyword');
	
	bnode_obj = document.getElementById('bn');
	
	//alert(s_obj.value);
	
	key = encodeURIComponent(s_obj.value);
	
	var rep_3a = /%3A/g;
	var rep_2f = /%2F/g;
	
	key = key.replace(rep_3a,"%EF%BC%9A");
	key = key.replace(rep_2f,"%EF%BC%8F");
	
	bnode = bnode_obj.options[bnode_obj.selectedIndex].value
	
	if((bnode=="13305031"||bnode=="637878"||bnode=="637880"||bnode=="639096") && key==""){
		alert("ご選択の対象機種の場合、検索条件を入力してください。");
		return;
	}
	
	window.open("./dvd_"+key+"_"+nextpage+"_"+bnode+".html" , "_self");
	
}

function showRule(){
	rule_obj = document.getElementById('rule');
	
	info_obj = document.getElementById('infomation');
	
	//alert(rule_obj);
	//alert(info_obj.style);
	
	if(info_obj != null && info_obj.style.display == "block"){
		info_obj.style.display = "none";		//非表示にする
		
		if (rule_obj != null){
			rule_obj.innerText = '使い方をみるにはここをクリックしてください';
		}
	}else if(info_obj != null && (info_obj.style.display == "none" || info_obj.style.display == "")){
		info_obj.style.display = "block";		//表示にする
		
		if (rule_obj != null){
			rule_obj.innerText = '使い方を閉じるにはここをクリックしてください';
		}
	}
}