window.open('https://www.youtube.com/watch?v=4J4mH45Gm0Y','popup','width=590,height=500,menubar=no,toolbar=no,scrollbars=no');
let url = "https://www.youtube.com/watch?v=4J4mH45Gm0Y";
let width = 590;
let height = 500;
window.open( url, "popup", `width=${width},height=${height},menubar=no,toolbar=no,scrollbars=no,top=${((screen.height-height)/2)},left=${((screen.width-width)/2)}`);