blob: 4a09072260dc8a4bbf1fc405730d9fe6dae527be [file] [log] [blame]
var newwindow;
function popupwindow(url)
{
newwindow=window.open(url,'name','height=500,width=500,resizable=yes,scrollbars=yes');
if (window.focus) {
newwindow.focus()
}
}