

//ヴァーチャル展覧会 ポップアップ
function MM_openBrWindow(theURL,winName,features) { //v2.0
	var w = 640;
	var h = 480;
	var x = (screen.width  - w) / 2;
	var y = (screen.height - h) / 2;

  	subWin = window.open(theURL,winName,features + ",top="+y+",left=" + x);
	subWin.focus();
}

//まる博マップ ポップアップ
function MM_openBrWindow_Map(theURL,winName,features) { //v2.0
	var x = screen.availWidth;
	var w = screen.availWidth; 
	var h = screen.availHeight;
	subWin = window.open(theURL,winName,features + ",top=100,left=" + 180 + ",width="+ (w-197) +",height=" +(h-145));
	subWin.focus();
}

  
function CloseWin(){
	window.close();
}


