function popup(bild, titel, breite, hoehe)
{
  var nw,nwparams;

  titel = titel + ' (' + breite + 'x' + hoehe + ')';  
   
  if(hoehe>screen.height)
  {
    breite=hoehe/breite*(screen.height);
    hoehe=screen.height;                                                                                                                                                         
  }
  if(breite>screen.width)
  {
    hoehe=hoehe/breite*(screen.width);
    breite=screen.width;
  }
 
  ypos=(screen.height-hoehe)/2-30;
  xpos=(screen.width-breite)/2;
   
  dx=0;
  dy=0;
  
   //alert("hoehe="+hoehe+" breite="+breite);

  coord_string= 'screenX=' + xpos + ',screenY=' + ypos + ',left=' + xpos + ',top=' + ypos;
  breite_hoehe_string='width=' + (breite*1.0+dx*1.0) + ',height=' + (hoehe*1.0+dy*1.0);
  param_string='location=no,scrollbars=no';
    
  nwparams=coord_string + ',' + breite_hoehe_string + ',' + param_string;
  
  //alert(nwparams);
  
  nw=window.open('bildseite.php?bild='+bild+'&titel='+titel+'&breite='+breite+'&hoehe='+hoehe,'',nwparams);
 
  nw.focus();
  nw=null;
}



          

