
function Zeige(Datei,Breite,Hoehe)
{
var text = "width=" + Breite;
    text = text + ",height=" + Hoehe;
    text = text + ",left=0,top=0"
F1 = window.open(Datei,"Fenster",text);
F1.focus();
F1.resizeTo(Breite,Hoehe);
}
