function LoadPopupBild(img){
  image= new Image();
  image.src=(img);
  AnpassungBild(img);
}
function AnpassungBild(img){
  if((image.width!=0)&&(image.height!=0)){
    ZeigeDasBild(img);
  }
  else{
    functions = "AnpassungBild('"+img+"')";
    intervall = setTimeout(functions,20);
  }
}
function ZeigeDasBild(img){
  breite = image.width + 20;
  hoehe = image.height + 20;
  stringa = "width="+breite+",height="+hoehe;
  PopupOpen = window.open(img,"",stringa);
}
