ua=navigator.userAgent;
//document.write(ua + "<br>");

// This code will simply detect the browser version and display the proper css for rendering

//These are for all browsers

document.write('<link rel="stylesheet" href="/dt/includes/style.css" type="text/css">');


if (ua.indexOf('IE')!=-1)
   { // We have IE 
   if ( (ua.indexOf("IE 4")==-1) && (ua.indexOf("IE 3")==-1) )
      {
      document.write('<link rel="stylesheet" href="/dt/includes/style_adv.css" type="text/css">');
      }
   }

else if (ua.indexOf("compatible")==-1)
    { // we dont have i.e
    if (!(ua.indexOf("/4")!=-1))
       {
       document.write('<link rel="stylesheet" href="/dt/includes/style_adv.css" type="text/css">');
       }
    else
       {
       document.write('<link rel="stylesheet" href="/dt/includes/ns47.css" type="text/css">');
       }
    }
else
   { // who knows what we have, show them the advanced css
   document.write('<link rel="stylesheet" href="/dt/includes/style_adv.css" type="text/css">');
   }