﻿/* Determines which CSS to load based on the Browser */
<!--

var browser     = '';
var entrance    = '';
var cond        = '';
if (browser == '') {
    if (navigator.appName.indexOf('Microsoft') != -1) {
        browser = 'IE';
    } else {
        browser = 'notIE';
    }
}       

if (browser == 'IE') {
    document.write('<'+'link rel="stylesheet" href="/includes/ie.css" />');
} else {
    document.write('<'+'link rel="stylesheet" href="/includes/site.css" />');
}
//-->