<!--
//POP UPセンター寄せ


var WindowWidth = 950;
var WindowHeight = 610;

function center() {
self.window.name="main"
var cen = 'width=' + WindowWidth;
cen += ',';
cen += 'height=' + WindowHeight;
cen += ',';
cen += 'location=yes';
cen += ',';

var cenw = (screen.width / 2) - (WindowWidth / 2);
var cenh = (screen.height / 2) - (WindowHeight / 2);
if (navigator.userAgent.indexOf ('MSIE') != -1) {
cen += 'left=' + cenw;
cen +=',';
cen += 'top=' + cenh;
} else if (navigator.userAgent.indexOf ('Mozilla') != -1) {
cen += 'screenX=' + cenw;
cen += ',';
cen += 'screenY=' + cenh;
}
subWin = window.open('/domo/special/vol01.html','sub',cen);

}



//POP UPブロック対策
if (window.navigator && navigator.userAgent && navigator.userAgent.indexOf("Gecko/") != -1) window.isGecko = true;



//-->