const open_window = (width, hight) => {
let w = screen.width;
let h = screen.height;
let left = (w - width) / 2;
let top = (h - hight) / 2;
open(
"https://www.baidu.com/?tn=62095104_19_oem_dg",
"",
`width=500,height=500,left=${left},top=${top},`
);
};