function TextFensterZeigen(w_1,w_2,w_3,w_4)
   {
   titel = w_1;
   breite = w_2;
   hoehe = w_3;
   text = w_4;
   
   
   bedingungen = 'toolbar=0,location=0,menubar=0,scrollbars=yes,resizable=0,height='+hoehe+',width='+breite;
   fenster = open("","",bedingungen)
   fenster.document.open(); 
   with (fenster)
      {
      document.write('<html><head><title>'+titel+'</title></head>');
      document.write('<body onblur="window.close()" leftmargin="10" topmargin="10">');
	  document.write('<font face="Verdana, Tahoma, Helvetica" size="2">');
	  document.write('<p><?php echo $row->zusatz; ?>');
	  document.write('<p>'+ text +'<p></font></body></html>');
      }
     fenster.document.close();
   }
