function openWindow(pfad,name,breite,hoehe,prop){
   var  diffx = 100;
   xpos=130;
   xpos1=xpos;
   if(document.all)
     xposend=breite/2
   else
     xposend=breite/2;
   ypos=(screen.height-hoehe)/2;
   prop+=(prop!='')?',':'';
   prop+=',left='+xpos+',top='+ypos;
   F1=window.open(pfad,name,prop+((prop!='')?',':'')+'width='+breite+',height='+hoehe);

   while (xpos1<(xposend-1)){
     xpos2=xpos1+((xposend-xpos1)/10);
     F1.moveTo(xpos2,ypos);
     F1.focus();
     xpos1=xpos2;
   }
   F1.focus();
}
