
function popupSpecial(content){
    w = screen.width;
    h = screen.height;

    var url = '/special/' + content + '/';
    var param = 'left=0,top=0,width=' + w + ',height=' + h + ',directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no';
    window.open(url, content, param);
}

function popupSpecialWH(content, w, h){
    var url = '/special/' + content + '/';
    var param = 'left=0,top=0,width=' + w + ',height=' + h + ',directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no';
    window.open(url, content, param);
}

function popupSpecialFileWH(content, w, h, file){
    if(w == 0) { w = screen.width; }
    if(h == 0) { h = screen.height; }
    var url = '/special/' + content + '/' + file;
    var param = 'left=0,top=0,width=' + w + ',height=' + h + ',directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no';
    window.open(url, content, param);
}

function popupOldSpecial(content){
    w = screen.width;
    h = screen.height;

    var url = 'http://e-levi.brandhosting.jp/special/' + content + '/';
    var param = 'left=0,top=0,width=' + w + ',height=' + h + ',directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no';
    window.open(url, content, param);
}

function popupExtSpecial(content){
    w = screen.width;
    h = screen.height;

    var url = 'http://e-levi.brandhosting.jp/ext/' + content + '/';
    var param = 'left=0,top=0,width=' + w + ',height=' + h + ',directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no';
    window.open(url, content, param);
}

