// script chooses correct cascading stylesheets based on the browser

if (navigator.appName == "Netscape")
    document.write('<link rel="stylesheet" type="text/css" href="trailNS.css">');
else
    document.write('<link rel="stylesheet" type="text/css" href="trailIE.css">');


