/******************************************************************
 *
 *     Date: 1999-11-17
 *     File: [/scripts]/cfCss.js
 *   Author: Lage Ohlund
 *  Library: C-ForWard (R) JavaScript API Library
 *
 *  Copyright (C) 1999 by Muskö Net (www.musko.net)
 *
 *  This script can NOT been used freely.
 *  =============================================================
 *  Date     Ver      Sign        Description
 *  -------------------------------------------------------------
 *  991117   1.0      McLage      Start of project
 ******************************************************************/

//--Check Client Browser

if(parseInt(navigator.appVersion)>=4) {
  if(navigator.appName=="Netscape") {
    if(parseInt(navigator.appVersion)<5) {
      document.write("<link rel='stylesheet' type='text/css' href='/css_ns.css'>");
    } else {
      document.write("<link rel='stylesheet' type='text/css' href='/css_ns6.css'>");
    }
  } else if(navigator.appName=="Microsoft Internet Explorer") {
    document.write("<link rel='stylesheet' type='text/css' href='/css_ie.css'>");
  }
} 

/******************************************************************
 *  EndOfFile
 ******************************************************************/
