function FotoGalerie(name,bu,bild,breite,hoehe)
{
  var neueBreite = breite;
  var neueHoehe = hoehe;
  name = "neu" + name;
  if( bu.length != 0 )
  {
    var neueHoehe = hoehe * 1.20;
    add = window.open("fg.php?bild="+bild+"&breite="+breite+"&bu="+bu,name,"width="+neueBreite+", height="+neueHoehe+",location=0,menubar=0,personalbar=0,scrollbars=no,status=0");
  }
  else
    add = window.open("fg.php?bild="+bild+"&breite="+breite,name,"width="+neueBreite+", height="+neueHoehe+",location=0,menubar=0,personalbar=0,scrollbars=no,status=0");

  add.focus();
}
function Aktion(name,bild,breite,hoehe)
                                              {
                                                var neueBreite = breite;
                                                //var neueHoehe = hoehe * 1.20;
                                                var neueHoehe = hoehe;
                                                name = "neu" + name;

                                                add = window.open("sites/liga_popup.php?bild="+bild+"&breite="+breite,name,"width="+neueBreite+", height="+neueHoehe+",location=0,menubar=0,personalbar=0,scrollbars=no,status=0");

                                                breite = breite/2;
                                                hoehe = hoehe/2;
                                                x=(screen.availWidth/2)-breite;
                                                y=(screen.availHeight/2)-hoehe;
                                                add.moveTo(x,y);
                                                add.focus();
                                              }
