<!-- 各種新聞 -->
var target="blank";
function jump00(){
	var url=document.form1.select.options[document.form1.select.selectedIndex].value;
	if(url != ""){
		if(target == "top"){
			top.location.href = url;
		}
		else if(target == 'blank'){
			window.open(url, 'windows_name');
		}
		else if(target != ""){
			eval('parent.' + target + '.location.href = url');
		}
		else{
			location.href = url;
		}
	}
}
<!-- ニュース -->
var target="blank";
function jump02(){
	var url=document.form2.select.options[document.form2.select.selectedIndex].value;
	if(url != ""){
		if(target == "top"){
			top.location.href = url;
		}
		else if(target == 'blank'){
			window.open(url, 'windows_name');
		}
		else if(target != ""){
			eval('parent.' + target + '.location.href = url');
		}
		else{
			location.href = url;
		}
	}
}
<!-- 映画館 -->
var target="blank";
function jump03(){
	var url=document.form3.select.options[document.form3.select.selectedIndex].value;
	if(url != ""){
		if(target == "top"){
			top.location.href = url;
		}
		else if(target == 'blank'){
			window.open(url, 'windows_name');
		}
		else if(target != ""){
			eval('parent.' + target + '.location.href = url');
		}
		else{
			location.href = url;
		}
	}
}
<!-- マップ・郵便番号検索 -->
var target="blank";
function jump04(){
	var url=document.form4.select.options[document.form4.select.selectedIndex].value;
	if(url != ""){
		if(target == "top"){
			top.location.href = url;
		}
		else if(target == 'blank'){
			window.open(url, 'windows_name');
		}
		else if(target != ""){
			eval('parent.' + target + '.location.href = url');
		}
		else{
			location.href = url;
		}
	}
}
<!-- 辞書・翻訳 -->
var target="blank";
function jump05(){
	var url=document.form5.select.options[document.form5.select.selectedIndex].value;
	if(url != ""){
		if(target == "top"){
			top.location.href = url;
		}
		else if(target == 'blank'){
			window.open(url, 'windows_name');
		}
		else if(target != ""){
			eval('parent.' + target + '.location.href = url');
		}
		else{
			location.href = url;
		}
	}
}
<!-- 交通情報 -->
var target="blank";
function jump06(){
	var url=document.form6.select.options[document.form6.select.selectedIndex].value;
	if(url != ""){
		if(target == "top"){
			top.location.href = url;
		}
		else if(target == 'blank'){
			window.open(url, 'windows_name');
		}
		else if(target != ""){
			eval('parent.' + target + '.location.href = url');
		}
		else{
			location.href = url;
		}
	}
}
