// Statustext
        function a(txt) {
                self.status = txt
		
        }

        function b() {
                self.status = ""
        }

	function start() {
		text="Fischer & Partner KG"
		window.status=text;
	}

// öffne Fenster
function Fenster(Seite)
	{
        var cWindow
        if(screen.height<769){
	  cWindow = window.open(Seite,"nettrend","width=750,height=650,resizable=no,scrollbars=yes");
	}
	else{
	  cWindow = window.open(Seite,"nettrend","width=750,height=800,resizable=no,scrollbars=yes");
	}
	cWindow.moveTo (140,40);
        if (!cWindow.opener) cWindow.opener = self;
 	if (cWindow.focus != null) cWindow.focus();
        cWindow.setTimeout('window.close()',60000);

 	}
