<!--
function Fenster3Oeffnen(strTarget,width,heigth) {
  Fenster3 = window.open('',strTarget,'scrollbars=1,menubar=0,toolbar=0,titlebar=0,status=0,resizable=yes,width='+width+',height='+heigth+',left=0,top=-2');
  Fenster3.focus();
}
function Fenster4Oeffnen(strTarget,width,heigth) {
        Fenster4 = window.open('',strTarget,'scrollbars=1,menubar=0,toolbar=0,titlebar=0,status=0,resizable=yes,width='+width+',height='+heigth+',left=200,top=150');
        if (Fenster4.opener == null) Fenster4.opener = self; 
        Fenster4.opener.name = "opener";
        Fenster4.focus();
}
//-->
