Files
DependencyCheck/dependency-check-cli/cobertura/js/popup.js
2015-05-12 08:00:49 -04:00

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()
}
}