Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
452 B

  1. /*This detects which browser is being used and calls the appropriate CSS file.*/
  2. getNavigator();
  3. function getNavigator()
  4. {
  5. if (navigator.appName == "Microsoft Internet Explorer") {
  6. css = "nas_msie.css";
  7. document.writeln('<LINK REL="stylesheet" HREF="' + css + '">');
  8. }
  9. if(navigator.appName == "Netscape"){
  10. css = "nas_nscp.css";
  11. document.writeln('<LINK REL="stylesheet" HREF="' + css + '">');
  12. }
  13. }