// 設定開始
// （フレームの場合は、表示先のフレーム名を設定してください）
// （top を指定すると、フレームの分割を廃止して画面全体で表示します）
// （blank を指定すると、新規ウィンドウで表示します）

var target = "";

// 設定終了


function jump1(){

	var url = document.form1.select1.options[document.form1.select1.selectedIndex].value;

	if(url != "" ){

		if(target == 'top'){

			top.location.href = url;

		}
		else if(target == 'blank'){

			window.open(url, 'window_name');

		}
		else if(target != ""){

			eval('parent.' + target + '.location.href = url');

		}
		else{

			location.href = url;

		}

	}

}

function jump2(){

	var url = document.form2.select2.options[document.form2.select2.selectedIndex].value;

	if(url != "" ){

		if(target == 'top'){

			top.location.href = url;

		}
		else if(target == 'blank'){

			window.open(url, 'window_name');

		}
		else if(target != ""){

			eval('parent.' + target + '.location.href = url');

		}
		else{

			location.href = url;

		}

	}

}

function jump3(){

	var url = document.form3.select3.options[document.form3.select3.selectedIndex].value;

	if(url != "" ){

		if(target == 'top'){

			top.location.href = url;

		}
		else if(target == 'blank'){

			window.open(url, 'window_name');

		}
		else if(target != ""){

			eval('parent.' + target + '.location.href = url');

		}
		else{

			location.href = url;

		}

	}

}

function jump4(){
	for(var i=0;i<document.form4.radio4.length;i++){
		if(document.form4.radio4[i].checked == true){
			var url = document.form4.radio4[i].value;
		}
	}
	if(url != "" ){

		if(target == 'top'){

			top.location.href = url;

		}
		else if(target == 'blank'){

			window.open(url, 'window_name');

		}
		else if(target != ""){

			eval('parent.' + target + '.location.href = url');

		}
		else{

			location.href = url;

		}

	}

}

function jump5(){

	var url = document.form5.select5.options[document.form5.select5.selectedIndex].value;

	if(url != "" ){

		if(target == 'top'){

			top.location.href = url;

		}
		else if(target == 'blank'){

			window.open(url, 'window_name');

		}
		else if(target != ""){

			eval('parent.' + target + '.location.href = url');

		}
		else{

			location.href = url;

		}

	}

}


function jump6(){

	var url = document.form6.select6.options[document.form6.select6.selectedIndex].value;

	if(url != "" ){

		if(target == 'top'){

			top.location.href = url;

		}
		else if(target == 'blank'){

			window.open(url, 'window_name');

		}
		else if(target != ""){

			eval('parent.' + target + '.location.href = url');

		}
		else{

			location.href = url;

		}

	}

}
