

var HELPWin=null;//サブウインドウ(screen.width-w)/2

var SubWin=null;//サブウインドウスクロールバー有り

var HELPHref1="";//読み込むページ

function HelpWinOpen(HELPHref1,WinNo,W,H){

HELPWin=window.open(HELPHref1,WinNo,'left='+(window.screen.width-400)/2+',top='+(window.screen.height-420)/2+',screenX='+(window.screen.width-400)/2+',screenY='+(window.screen.height-400)/2+',toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,width='+W+',height='+H+'');


if(navigator.appVersion.charAt(0)==2){

HELPWin=window.open(HELPHref1,WinNo,'toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+W+',height='+H+'');}

//サブウインドウが開いたとき前面へフォーカスする。NN3.0~

if(navigator.appVersion.charAt(0)>=3){HELPWin.focus()}

};