function pop_up(Fenstername,Fensterbreite,Fensterhoehe,Scrollleiste) 
  {
    var Formatierungen = "width=" + Fensterbreite + ",height=" + Fensterhoehe + ",screenX=125,screenY=25,locationbar=no,menubar=no,scrollbars=" + Scrollleiste + ",resizable=yes,status=yes";
    popUpFenster = window.open("",Fenstername,Formatierungen); 
	popUpFenster.focus();
  }  
  
 