
// select onchange="menuLink(this.options[this.selectedIndex].value)"
// option value="" で指定されたリンク先へ、遷移する   
function menuLink(url) {
	if(url !="") {
		window.location.href = url;
	}
}

// select onchange="menuLinkOpen(this.options[this.selectedIndex].value)"
// option value="" で指定されたリンク先を、別ウィンドウで、オープンする
function menuLinkOpen(url) {
	if(url !="") {
		window.open(url,"","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
	}
}

// フィードバックウィンドウ
// a href="***.html" target="ウィンドウ名" onclick="openFeedbackWin(this.href,'ウィンドウ名',横サイズ,縦サイズ); return(false);"
function openFeedbackWin(wUrl,wName,wWidth,wHeight) {
	newWin = window.open(wUrl,wName,
		"width=" 
		+ wWidth 
		+ ",height=" 
		+ wHeight 
		+ ",toolbar=no,menubar=yes,directories=no,location=yes,status=yes,scrollbars=yes,resizable=yes"
	);
	newWin.name = wName;
	newWin.opener = self;
	newWin.focus();
}





// 製品サイトサイドメニュープルダウン：仮スクリプト
// select onchange="prodLink(this.options[this.selectedIndex].value)"
// option value="" で指定されたリンク先へ、遷移する   
function prodLink(url) {
	if(url !="") {
		window.location.href = url;
	}
}