function openGallerywindow(theURL) {
  var galleryWin;
  var posTop = (screen.availHeight - 550) / 2;
  var posLeft = (screen.availWidth - 950) / 2;
	if(theURL == undefined) {
		theURL = '/gallery/gallery.htm';
	}
  galleryWin = window.open(theURL,'gallery','width=1024,height=550,top=' + posTop + ',left=' + posLeft + ',directories=no,channelmode=no,fullscreen=no,location=no,menubar=no,personalbar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
  galleryWin.focus();
}
//
// underworld makuhari open window ---
function feature0712open(theURL) {
	// --
	if(screen.availWidth > 1024) {
		var winW = 1024;
	} else {
		var winW = screen.availWidth;
	}
	// --
	if(screen.availHeight > 768) {
		var winH = 768;
	} else {
		var winH = screen.availHeight;
	}
	// --
  var feature0712Win;
  var posTop = (screen.availHeight - winH) / 2;
  var posLeft = (screen.availWidth - winW) / 2;

if(theURL == undefined) {
		theURL = '/feature/underworld2007_makuhari/index.htm';
	}
  feature0712Win = window.open(theURL,'feature0712','width=' + winW + ',height=' + winH + ',top=' + posTop + ',left=' + posLeft + ',directories=no,channelmode=no,fullscreen=no,location=no,menubar=no,personalbar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
  feature0712Win.focus();
}
// Feature 0802 ------------------
function zoomOpen(theURL) {
	var zoomWin;
	zoomWin = window.open(theURL,'zoom','top=10, left=10, width=800, height=500');
	zoomWin.focus();
}
