<!--サブウインドウを中央に開く
function openWin(wUrl,wWidth,wHeight){
  scWidthCenter=screen.availWidth/2;
  scHeightCenter=screen.availWidth/3;
  wOption=
"menubar=yes,scrollbars=yes,resizable=yes,width="+wWidth+",height="+wHeight+",left="+(scWidthCenter-(wWidth/2))+",top="+(scHeightCenter-(wHeight/2));
  window.open(wUrl,'newwin',wOption);
}
//-->