function tipp(fenster)
{
 self.name = "text";
 info = window.open ('','tipp','width=150, height=60')
 if(info != null)
 {
  if(info.opener == null)
  {info.opener = self;
  }
 }
 info.document.open()
 info.document.write("<html><head><title>&nbsp;&nbsp;&nbsp;&nbsp;Hinweis&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</title>");
 info.document.write("<body bgcolor=gold text=black >")
 info.document.write("<center><font size=2>")
 info.document.write(fenster)
 info.document.write("</body></html>")
 info.document.close()
 return true;
}
function tippzu()
{
 info.close()
 return true;
}
