blob: 47e2befe6db3d1dfd609838694ce0411d522a256 [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()
}
}