//
//	openform.js
//	


function openForm(oURL)
{
	this.blur();
	
	// デフォルトのウィンドウサイズを規定
	var width = 600;
	var height = 760;
	
	// パラメータを代入
	var url = oURL;
	var name = "subwin";
	var features = "width=" + width + ",height=" + height;
	features += ",left=20,top=20,scrollbars=yes,resizable=yes,locationbar=no,toolbar=no";
	
	// ウィンドウを開く
	var subwin = window.open(url,name,features).focus();
	
	return false;
}


function openWin(oURL,oWidth,oHeight)
{
	this.blur();
	
	// デフォルトのウィンドウサイズを規定
	width = oWidth ? oWidth : 600;
	height = oHeight ? oHeight : 400;
	
	// パラメータを代入
	var url = oURL;
	var name = "subwin";
	var features = "width=" + width + ",height=" + height;
	features += ",left=20,top=20,scrollbars=yes,resizable=yes,locationbar=no,toolbar=no";
	
	// ウィンドウを開く
	var subwin = window.open(url,name,features).focus();
	
	return false;
}
