var clientPlatform = getPlatform();var clientName = getName();if (clientPlatform == "Macintosh"){if (clientName == "Netscape") document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/macnn.css\">");  else {if (clientName == "MSIE") document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/macie.css\">");  else {document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/macie.css\">"); }}} else {if (clientPlatform == "Windows"){if (clientName == "Netscape") document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/winnn.css\">");  else {if (clientName == "MSIE") document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/winie.css\">");  else {document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/winie.css\">"); }}} else {if (clientPlatform == "UNIX"){if (clientName == "Netscape") document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/winnn.css\">");  else {if (clientName == "MSIE") document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/winie.css\">");  else {document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/winie.css\">"); }}} else {if (clientPlatform == "unknown"){if (clientName == "Netscape") document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/winnn.css\">");  else {if (clientName == "MSIE") document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/winie.css\">");  else {document.write("<link rel=stylesheet type=\"text/css\" href=\"../com/winie.css\">"); }}}}}}function getPlatform(){appVersion = (navigator.appVersion);var thePlatform = "unknown";if (appVersion.indexOf('Win') != -1)thePlatform = "Windows";if (appVersion.indexOf('Mac') != -1)thePlatform = "Macintosh";if (appVersion.indexOf('X11') != -1)thePlatform = "UNIX";return thePlatform;}function getName(){appName = (navigator.appName);var theName = "unknown";if (appName.indexOf('Netscape') != -1)theName = "Netscape";if (appName.indexOf('Microsoft Internet Explorer') != -1)theName = "MSIE";return theName;}