<!--
function BindFile(Desc, FileName, Separator)
{
  var Erg = '';

  if (document.all)
    Erg = '<OBJECT ID="' + Desc + '" WIDTH=0 HEIGHT=0 CLASSID="CLSID:333C7BC4-460F-11D0-BC04-0080C7055A83">\n' +
          '  <PARAM NAME="DataURL" VALUE="' + FileName + '">\n' +
          '  <PARAM NAME="TextQualifier" VALUE="' + Separator + '">\n' +
          '  <PARAM NAME="FieldDelim" VALUE="|">\n' +
          '  <PARAM NAME="UseHeader" VALUE="true">\n' +
          '</OBJECT>\n' +
          '<div datasrc="#' + Desc + '" datafld="Text" dataformatas="HTML"></div>\n';

  else if (document.layers && navigator.javaEnabled()) {

    var Pfad = self.location.pathname;
    Pfad = Pfad.substring(0, Pfad.lastIndexOf('/')+1);

    url = new java.net.URL(self.location.protocol.split(':').join(''), self.location.host, Pfad + FileName);
    MyReader = new java.io.BufferedReader(new java.io.InputStreamReader(url.openStream()));
    var tmp = MyReader.readLine();
    while ((tmp = MyReader.readLine()) != null)
      Erg += tmp + ' ';

    MyReader.close();
    Erg = Erg.split(Separator).join('');

  }

  return (Erg);
}
//-->
