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
23 lines
452 B
/*This detects which browser is being used and calls the appropriate CSS file.*/
|
|
|
|
getNavigator();
|
|
|
|
function getNavigator()
|
|
{
|
|
|
|
if (navigator.appName == "Microsoft Internet Explorer") {
|
|
|
|
css = "nas_msie.css";
|
|
|
|
document.writeln('<LINK REL="stylesheet" HREF="' + css + '">');
|
|
}
|
|
|
|
if(navigator.appName == "Netscape"){
|
|
|
|
css = "nas_nscp.css";
|
|
|
|
document.writeln('<LINK REL="stylesheet" HREF="' + css + '">');
|
|
}
|
|
|
|
}
|
|
|