if (navigator.platform.indexOf('Mac') > -1) {
    //mac users
    if(navigator.appName.indexOf('Microsoft') > -1){
      //explorer
      document.write('<link href="/CSS/mac_ie.css" rel="styleSheet" type="text/css">');

      }else{
      //netscape
      document.write('<link href="/CSS/mac_ns.css" rel="styleSheet" type="text/css">');

  }

  } else {
    //windows or unix
    if (navigator.appName.indexOf('Microsoft') > -1) {
      //explorer
      document.write('<link href="/CSS/win_ie.css" rel="styleSheet" type="text/css">');

    } else {
      //netscapes
      document.write('<link href="/CSS/win_ns.css" rel="styleSheet" type="text/css">');

    }
  }

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

