export default (url, width, height) => { const h = width || 600 const w = height || 800 const y = window.top.outerHeight / 2 + window.top.screenY - h / 2 const x = window.top.outerWidth / 2 + window.top.screenX - w / 2 window.open( url, '_blank', 'toolbar=no,scrollbars=yes,resizable=yes,top=' + y + ',left=' + x + ',width=' + w + ',height=' + h ) }