/*
 *  Copyright 2000 Quidnunc All Rights Reserved
 *
 *  /javascript/detect_css.js
 *
 *  This is the style sheet switcher.
 *
 *  Author: Quidnunc
 *  Version: d1
 *
 *
 *  Ver Date          Who                     Comments
 *  -------------------------------------------------------------------------
 *  d1  22-June-2001  Chris Pederick          Created.
 *  -------------------------------------------------------------------------
 */

if(isWindows() && isInternetExplorer())
{
    document.write('<link rel="stylesheet" href="/css/common/windows_ie/windows_ie.css" type="text/css">');
}
else if(isWindows() && isNetscape())
{
    document.write('<link rel="stylesheet" href="/css/common/windows_ns/windows_ns.css" type="text/css">');
}
else if(isMacintosh() && isInternetExplorer())
{
    document.write('<link rel="stylesheet" href="/css/common/macintosh_ie/macintosh_ie.css" type="text/css">');
}
else if(isMacintosh() && isNetscape())
{
    document.write('<link rel="stylesheet" href="/css/common/macintosh_ns/macintosh_ns.css" type="text/css">');
}

