<!--
    function checkIt(string) {
        place = detect.indexOf(string) + 1;
        thestring = string;
        return place;
    }
    var detect = navigator.userAgent.toLowerCase();
    if (checkIt('msie 4.5; mac') || (checkIt('aol') && checkIt('mac'))) {
        // Just for MS 4.5 mac &  AOL mac
        document.write('<link rel="stylesheet" href="../stylesheets/style_msie45mac.css" type="text/css">');
    } else {
        // Everything except MS 4.5 mac & AOL mac
        document.write('<link rel="stylesheet" href="../stylesheets/style.css" type="text/css">');
    }
//-->
