  <!-- Common definitions for X and PC platforms -->

  UseCSS("/site-style/2candance/common.css");       <!-- Text properties -->
  UseCSS("/site-style/2candance/colour.css");       <!-- Colour classes  -->
  UseCSS("/site-style/2candance/2cancolours.css");  <!-- Colour classes  -->

  <!-- Sheets for differences in X and PC platforms -->

  if ((navigator.appVersion.indexOf ("Mac") > 0) || 
      (navigator.appVersion.indexOf ("X11") > 0)) {
         UseCSS("/site-style/2candance/xstyle.css");
  } else {

  <!-- Sheets for differences in IE and Navigator for PC font display -->

         if (navigator.appName.indexOf ("Microsoft") != -1) {
           UseCSS("/site-style/2candance/ie/small.css");
           UseCSS("/site-style/2candance/ie/cells.css");
           UseCSS("/site-style/2candance/ie/style.css");
           } else {
           UseCSS("/site-style/2candance/netscape/style.css");
           UseCSS("/site-style/2candance/netscape/small.css");
           UseCSS("/site-style/2candance/netscape/cells.css");

         }
  }

  <!-- Link properties. IE links have hover definitions. -->

  if (navigator.appName.indexOf ("Microsoft") != -1) {
         UseCSS("/site-style/2candance/ie/links.css");
  } else {
         UseCSS("/site-style/2candance/netscape/links.css");
  }

function UseCSS(stylesheet) {
 document.write('<link rel=stylesheet type="text/css" href="' , stylesheet , '">');
}

var browser = "Info\n";
for (var propname in navigator) {
browser+=propname + ": " + navigator[propname] + "\n"
}


