function popup (address, width, height)
  {        
    width = width + 30;
    height = height + 30; 
    options = "width=" + width + ",height=" + height + ",left=100,top=200";       
    fenster = window.open(address, "Zoom", options);    
    
    width = width - 30;
    height = height - 30;
    
    fenster.document.writeln("<html>");    
    fenster.document.writeln("<a href=\"javascript:self.close()\"><img style=\"border-width:0px\" src=\""+address+"\" width=\""+width+"\" height=\""+height+"\"></a>");
    fenster.document.writeln("<\/html>");
             
    fenster.focus();        
  }