// ポップアップウインドウ
function openWin01()
{
var w01 = window.open("", "pop01", "width=617,height=580,scrollbars=1,resizable=1,toolbar=0,menubar=1,location=1,status=1");
w01.focus();
}

// 外部リンク「取扱ファンド一覧」「用語集」
function openWin02()
{
var w02 = window.open("", "pop02", "width=800,height=600,scrollbars=1,resizable=1,toolbar=0,menubar=0,location=0,status=0");
w02.focus();
}

/*外部リンク(アラート有無判断付き)*/
function blankOpen(url,msg) {
	if(msg.length == 0) {
		window.open( url,"_blank");
	}
	if(msg.length != 0) {
		window.alert(msg);
		window.open( url,"_blank");
	}
}

// 新卒採用ポップアップウインドウ
function openWin03()
{
var w03 = window.open("", "pop03", "width=710,height=400,scrollbars=1,resizable=1,toolbar=0,menubar=1,location=1,status=1");
w03.focus();
}

