// common js for pepr
var newwindow;

function popstatic(url, targetname)
{
  newwindow = window.open(url, targetname, 'height=400, width=200');
  if (window.focus) {newwindow.focus()}
}