// JavaScript Document
function openBrWindow(theURL,winName,features,strValue1)
{
	var objWin;	//ウィンドウオブジェクト
	var strValue1;	//値

	//値の取得
	strResult = strValue1;

	//子ウィンドウを作成します
	objWin = window.open(theURL,winName,features);
}

function ReturnValue()
{
	return strResult;
}
