
//<script>

//**************************************
//* This script checks the browser
//* version and pulls the corresponding
//* cascading style sheet.
//**************************************

var ieNav = navigator.appName == "Microsoft Internet Explorer";
var ssHref = '<link rel="stylesheet" type="text/css" href="/styles/ns.css">';
if (ieNav) ssHref = '<link rel="stylesheet" type="text/css" href="/styles/ie.css">';
document.write(ssHref);

