
/*
Neues Fenster, maximiert
*/


function maximieren(Datei)
{
if (document.all) 
{
var hoehe = screen.availHeight - 34;
var breite = screen.availWidth - 4;
neu = window.open(Datei,'neu','width='+breite+',height='+hoehe+',toolbar=0,menubar=0,scrollbars=1,status=0,location=0,left=0,top=0');
}
else
neu = window.open(Datei,'neu','toolbar=0,menubar=0,scrollbars=1,status=0,location=0');
}
