if (navigator.platform.charAt(0) == "M"){
  if (navigator.appName == "Netscape"){  // Mac Netscape
  document.write('<link rel="stylesheet" href="../css/mac_NN.css" type="text/css">');
  document.close();
  }
  if(navigator.appName.charAt(0) == "M"){  // Mac IE
    if(navigator.appVersion.indexOf("5.0;",0)!= -1){
    document.write('<link rel="stylesheet" href="../css/mac_IE.css" type="text/css">');
    document.close();
    }else{
    document.write('<link rel="stylesheet" href="../css/mac_NN.css" type="text/css">');
    document.close();
    }
  }
}
if (navigator.platform.charAt(0) == "W"){
  if (navigator.appName == "Netscape"){  // windows Netscape
  document.write('<link rel="stylesheet" href="../css/win_NN.css" type="text/css">');
  document.close();
  }

  if(navigator.appName.charAt(0) == "M"){  // windows IE
  document.write('<link rel="stylesheet" href="../css/win_IE.css" type="text/css">');
  document.close();
  }
}