
//「緑の館」Newウィンドウリンク：貸室空き情報

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//--------------------------------------------------------------------------//
// 梅小路公園ガイドブック　デジブック　Newウィンドウ表示
//--------------------------------------------------------------------------//
	
function SubWin_guidebook(url){
	w = 1000;
	h = 800;
	e = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes";

	d = new Date();
	n = d.getMinutes() +"_"+ d.getMilliseconds();
	p = e + ",width=" +w+ ",height=" +h;
	win = window.open(url, n, p);
	win.focus();
}
