<!--- script to sniff if you are a netscaper or ie browser and serve up the correct CSS --->
  // default style sheet; use ie CSS
  var css = "<LINK rel='stylesheet' type='text/css' href='http://www.inetcam.com/inc/inetcam_v2.css'>";
  //netscape on a funky windows machine
  if((navigator.appName=="Netscape") && (navigator.userAgent.indexOf("Win")>-1)){
          css = "<LINK REL='stylesheet' TYPE='text/css' HREF='http://www.inetcam.com/inc/inetcam_v2_ns.css'>";
  }
  //explorer on a super funky windows machine
  if((navigator.appName=="Microsoft Internet Explorer") &&
  (navigator.userAgent.indexOf("Win")>-1)){
          css = "<LINK REL='stylesheet' TYPE='text/css' HREF='http://www.inetcam.com/inc/inetcam_v2.css'>";
  }
   document.write(css);
   //alert(css);

