<!--
/****************************************************
 *        Browser Sniffer and CSS chooser           *
 * Copyright: (c) 2003-2007 Ragbert, the Webboffin® *
 * http://webboffin.crosswinds.net/                 *
 ****************************************************
 * You may use this script on personal, non-        *
 * commercial sites only.  Use of this script       *
 * requires the inclusion of this copyright         *
 * notice inside the script.                        *
 ****************************************************
 * If you make any improvements to the script,      *
 * email "webboffin at crosswinds dot net" with     *
 * a link to your menu, and we'll give you credit   *
 * for it.  &:-)                                    *
 ***************************************************/

var Moz = (document.getElementById &&! document.all);

var Opr = (navigator.appName == "Opera" || navigator.userAgent == "Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.1) Opera 7.0 [en]");

var IE5up = (document.all && document.getElementById && (navigator.appVersion.indexOf("Windows")) &&! (navigator.appName == "Opera"));

var Konq = (navigator.appName == "Konqueror");

var NS4 = (document.layers || (navigator.userAgent == "Mozilla/4.79 [en] (Windows NT 5.0; U)"));

function chooseCSS() {
  if (Moz || Opr) {
    document.writeln('<style type=\"text\/css\">');
    document.writeln('<!--');
    document.writeln('@import url(navi.css);');
    document.writeln('\/\/ --\>');
    document.writeln('<\/style>');
  }
  else if (IE5up || Konq) {
    document.writeln('<style type=\"text\/css\">');
    document.writeln('<!--');
    document.writeln('@import url(navi_IE.css);');
    document.writeln('\/\/ --\>');
    document.writeln('<\/style>');
  }
  else if (NS4) {
    document.writeln('<meta http-equiv=\"Refresh\" content=\"0; URL=\'index_NS4.html\'\">');
    document.writeln('<link rel=\"stylesheet\" href=\"navi_NS4.css\" type=\"text/css\" \/>');
  }
  else return true;
}
    
// -->
