<!--
//  BROWSER DETECTION
var NS;
var IE;
var PC;
var MAC;

if(document.all)
 {
  NS = false;
  IE = true;
 }
  else
 {
  NS = true;
  IE = false;
 }

if(navigator.platform.indexOf("Win32") != -1)
 {
 PC = true;
 MAC = false;
 } else
 {
 PC = false;
 MAC = true;
 }

var LayerObject = (document.layers)? true:false;
var DocumentObject = (document.all)? true:false;

/******************************************************************************/
// INCLUDE THE APPROPRIATE STYLESHEET

if (IE) {
 if (PC) {
  document.write('<LINK rel="stylesheet" type="text/css" href="includes/menu_pcie.css" title="style1">');
 } else {
  document.write('<LINK rel="stylesheet" type="text/css" href="includes/menu_macie.css" title="style1">');}

} else {
 if (PC) {
  document.write('<LINK rel="stylesheet" type="text/css" href="includes/menu_pcns.css" title="style1">');
 } else {
  document.write('<LINK rel="stylesheet" type="text/css" href="includes/menu_macns.css" title="style1">');}
}

/******************************************************************************/
