/*
Dieses Script unterliegt dem Copyright von 
Xpress-Auktion.de - Andre Landis

Erstellt: 04.07.2003
info@streamsoft.de
*/
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;
  DatenBH = "width="+breite+",height="+hoehe;
  PopupOpen = window.open(img,"",DatenBH);
}
