function popWin(file){
  newWin=window.open("","ResizeBillede","width=300,height=200,status=no");
  txt='<html><head><title>Billede<\57title><script language="javascript" type="text/javascript">';
  txt+='function resPic(){h=document.images[0].scrollHeight;';
  txt+='w=document.images[0].scrollWidth;window.resizeTo(w+6,h+32);}<\57script>';
  txt+='<\57head><body style="overflow:hidden;';
  txt+='border:0px;margin:0px"><img src="'+file+'" style="top:0px;left:0px;border:0px;';
  txt+='" onload="resPic();"><\57body><\57html>';
  newWin.document.write(txt);
  newWin.document.close();
}