function newWindow(url){	newwindow=window.open("","newwin","toolbar=yes,location=no,directories=no,status=no,scrollbars=yes,resizable=no,width=500,height=200");	newwindow.focus();	newwindow.location.href=url;　　}/* ポップアップ */function popup(win_url,win_name,size)	{ if(size == 1){ win_width = 500; win_height = 300; }	 if(size == 2){ win_width = 630; win_height = 450; }	 if(size == 3){ win_width = 550; win_height = 500; }	 if(size == 4){ win_width = 420; win_height = 210; }	 if(size == 5){ win_width = 630; win_height = 600; }	 if(size == 6){ win_width = 850; win_height = 600; }	 if(size == 7){ win_width = 550; win_height = 700; }	 if(size == 8){ win_width = 400; win_height = 350; }	 if(size == 9){ win_width = 650; win_height = 650; } var win_data = "toolbar=no,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + win_width + ",height=" + win_height; WinOpen = window.open(win_url,win_name,win_data); WinOpen.focus(); }/* ポップアップ2 */function popupwin(win_url,win_name,size)	{ if(size == 9){ win_width = 780; win_height = 728; } var win_data = "toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=" + win_width + ",height=" + win_height; WinOpen = window.open(win_url,win_name,win_data); WinOpen.focus(); }/* ポップアップ3 */function popupweb3(win_url,win_name,size)	{ if(size == 6){ win_width = 840; win_height = 600; } var win_data = "toolbar=0,location=1,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=" + win_width + ",height=" + win_height; WinOpen = window.open(win_url,win_name,win_data); WinOpen.focus(); }/* 資産運用の日　SPコンテンツポップアップ */function popupwin_43(win_url,win_name,size)	{ var win_data = "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=" + 700 + ",height=" + 567; WinOpen = window.open(win_url,win_name,win_data); WinOpen.focus(); }function navStart_fij(filename) { var win_data = "toolbar=no,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=500,height=550"; win_url = '/fij/fund/nav_html/' + filename + '_nav.html'; WinOpen = window.open(win_url,"NAV",win_data); WinOpen.focus(); }function navStart_fbsj(filename) { var win_data = "toolbar=no,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=500,height=565"; win_url = '/fbsj/product/fund/nav_html/' + filename + '_nav.html'; WinOpen = window.open(win_url,"NAV",win_data); WinOpen.focus(); } function newpage(url,winName,features){w=window.open(url,winName,features);}