function closewindow() {
window.opener = null;
window.open("", "_self");
window.top.close();
if (navigator.userAgent.indexOf("Firefox") > 0) {
window.location.href = 'about:blank';
}
}
2021-10-28 13:18:39
function closewindow() {
window.opener = null;
window.open("", "_self");
window.top.close();
if (navigator.userAgent.indexOf("Firefox") > 0) {
window.location.href = 'about:blank';
}
}