function WinKiyaku()
{
	window.open("http://www.teacup.com/zmgr/?p=z9000","kiyaku","scrollbars=yes,resizable=yes,width=580,height=380");
}

function WinPrivacy()
{
	window.open("http://www.teacup.com/zmgr/?p=z6000","privacy","scrollbars=yes,resizable=yes,width=520,height=320");
}

function WinColor()
{
	window.open("http://www.teacup.com/zmgr/?p=z9500","color_sample","scrollbars=yes,resizable=yes,width=520,height=320");
}

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, '_blank', 'scrollbars=yes,resizable=yes,width=580,height=380');
		break;
	case '3':	// ポップアップウィンドウ指定なし
		window.open(url);
		break;
	}
}

