function Jump() {
	
	var func, url;
	
	with (document.seljump) {
		var str = list.options[list.selectedIndex].value;
		func = str.charAt(0);
		url  = str.substring(2);
	}
	
	switch (func) {
	case '0':	// フレーム内リンク
		if (window.top.main)
			window.top.main.location.href = url;
		else
			window.location.href = url;
		break;
	case '1':	// フレーム解除
		window.top.location.href = url;
		break;
	case '2':	// ポップアップウィンドウ
		window.open(url, '', 'scrollbars=yes,resizable=yes,width=580,height=380');
		break;
	case '3':	// ポップアップウィンドウ指定なし
		window.open(url);
		break;
	}
}

