function SubwindowOpen(url) {
 var features="top=10,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
 var width = 700;	//サブウィンドウ横方向幅
 var height = 600;	//サブウィンドウ縦方向長さ
 if (width) {
  if (window.screen.width > width)
   features+=", left="+(window.screen.width-width)/2;
  else width=window.screen.width;
  features+=", width="+width;
 }
 if (height) {
  if (window.screen.height > height)
   features+=", top="+(window.screen.height-height)/2;
  else height=window.screen.height;
  features+=", height="+height;
 }
 window.open(url,'Subwindow',features);
}

//使い方
//<a href="javascript:function voi(){};voi()" onclick="SubwindowOpen('../subwindow/subwindow.html'); return false;">クリックしてサブウィンドウを表示する</a><br>
