mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-18 09:37:38 +01:00
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
var newwindow;
|
|
function popupwindow(url)
|
|
{
|
|
newwindow=window.open(url,'name','height=500,width=500,resizable=yes,scrollbars=yes');
|
|
if (window.focus) {
|
|
newwindow.focus()
|
|
}
|
|
}
|