
<!-- Load generic default style sheet ic -->

<link rel="stylesheet" href="style-main.css" />

<!-- The 'is' object contains browser version information.
     It is created by the downloaded browser-detect.js script.
     But Older browsers don't load external scripts -- so
     just create 'is' now, and let the script replace it if
     the script runs -->

<script><!-- is = null; // --></script>

<!-- Now load browser-detection script. Original script from:
     developer.netscape.com/docs/examples/javascript/browser_type.html 
-->
<script src="./browser-detect.js"> </script>

<!-- If browser couldn't load script set variable'is' to be a 
     new 'empty' object, so the rest of the script will work.
-->
<script><!--
if( is == null) { is = new Object(); }
// --></script>

<!-- Now load appropriate style sheets depending on the 
     browser 
-->
<script><!--
// Insert browser-specific style sheets. These can overload
// The rules from the 'main' style sheets, to correct for
// idiosyncracies in particular browsers.
if (is.nav5up) {
  document.write('<'+'link rel="stylesheet" href="style-moz5.css" />');
}
else if (is.nav4) {
  document.write('<'+'link rel="stylesheet" href="style-nav4.css" />');
}
else if (is.ie5up) {
  document.write('<'+'link rel="stylesheet" href="style-ie5.css" />');
}
else if (is.ie4) {
  document.write('<'+'link rel="stylesheet" href="style-ie4.css" />');
}
else if (is.ie3) {
  document.write('<'+'link rel="stylesheet" href="style-ie3.css" />');
}
else if (is.opera) {
  document.write('<'+'link rel="stylesheet" href="style-op.css" />');
}
// -->
</script>
