function tipp(fenster)
{
 self.name = "text";
 info = window.open ('','tipp','width=180, 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=#FFF000 text=black >")
 info.document.write("<center><font size=3>")
 info.document.write(fenster)
 info.document.write("</body></html>")
 info.document.close()
 return true;
}
function tippzu()
{
 info.close()
 return true;
}