// This javascript detects whch browser is being used and then assigns the relevant stylesheet

if (document.all) 
 document.writeln('<LINK href="sitewide_stylesheet.css" rel=stylesheet>');
else
 document.writeln('<LINK href="sitewide_stylesheetns.css" rel=stylesheet>');
