

function openInfoAnfordern(pfad){

   fBre=700;
   fHoe=800;
   breite=(screen.availWidth-fBre)/2;
   hoehe=(screen.availHeight-fHoe)/2;
   if (breite<=10) breite=10;
   if (hoehe<=10) hoehe=10;
   //alert(pfad);
   if (pfad=="../") datei="info_anf.php";
   else datei="de/info_anf.php";
   myF=window.open(datei, "infoanf","width="+fBre+",height="+fHoe+",left="+breite+",top="+hoehe+",status=no,resizable=yes,scrollbars=yes,location=no");
   myF.focus();

}