/*
##################################################
#newindow.js
#Version 0.1
#ブラウザウィンドウを開くスクリプト
#呼び出し側でオプション指定されいればそちらを使い、
#なければこちらの指定で画面中央に表示する
#JavaScript coding: Go Kikuchi
#Copyright 2004 Go Kikuchi All rights reserved.
##################################################
*/

function MM_openBrWindow(url,winnm,features) {
	if (!url) {
		url = "";	/*アドレス:未入力は空ウィンドウ*/
	}
	if (!winnm) {
		winnm = "popup";	/*ウィンドウ名*/
	}
	if (!features) {
		optn = "toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1";	/*オプション*/
		winw = 540;	/*ウィンドウ幅*/
		winh = 410;	/*ウィンドウ高*/
		scrnw = screen.availWidth;
		scrnh =  screen.availHeight;
		x = (scrnw-winw)/2;
		y = (scrnh-winh)/2;
		features = optn + ',width=' + winw + ',height=' + winh + ',left=' + x + ',top=' + y;
	}
	window.open(url,winnm,features);
}

