var newwindow
function popitup(url, iwidth, iheight)
  {
  var pwidth, pheight;
  pwidth=iwidth+30;
  pheight=iheight+35;
  var myLeft = (screen.width-pwidth)/2;
  
  if(newwindow && !newwindow.closed)
    {
    newwindow.focus(); newwindow.document.clear()
    } 
  else 
    {
newwindow=window.open('','myWindow','left='+myLeft+',top=15,scrollbars=no,resizable=no,status=no,width='+pwidth+',height='+pheight)
    }
  newwindow.document.writeln('<html><head><title>Popup image<\/title> <\/head><center>');
  newwindow.document.writeln('<img src=' + url + '>');
  newwindow.document.writeln('<\/center> <\/body> <\/html>');
  newwindow.document.close();
  }
