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