// popwin.js
// First Created: 2003/07/09
// Last modified: 2003/07/14

function openWindow(winUrl,winName,winWidth,winHeight,winResize,winCenter,winScroll){
if ( document.all || document.layers || document.getElementById ){
screenWidthCenter = screen.availWidth / 2;
screenHeightCenter = screen.availHeight / 2;
}
else {
winCenter = 0;	
}	
if ( winCenter == 1 ){
Winoption= "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + winScroll + ",resizable=" + winResize + ",width=" + winWidth + ",height=" + winHeight + ",left=" + (screenWidthCenter - ((winWidth + 25) / 2)) + ",top=" + (screenHeightCenter - ((winHeight) / 2));
}
else if( winCenter == 0){
Winoption= "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + winScroll + ",resizable=" + winResize + ",width=" + winWidth + ",height=" + winHeight;
}
var the_window = window.open(winUrl,winName,Winoption);
//フォーカス
the_window.focus();
}
