// Client browser detection
//
if (isset($GLOBALS['browser'])) {
    $browser = $GLOBALS['browser'];
} else {
    // Check local directory first, then check system directory.
    // This facilitates local mods and testing.
    if (file_exists('ccBrowserInfo.php')) {
        include_once 'ccBrowserInfo.php';
    } else {
        include_once $_SERVER['DOCUMENT_ROOT'] . '/bin/ccBrowserInfo.php';
    }
    $browser = new ccBrowserInfo();
}
echo '/* Dynamically generated based on client browser info:' . "\n";
$browser->showMe(false);
echo "*/\n";
//
// Check for Optional Indented Body Style
//
if (!isset($GLOBALS['styleBodyIndent'])) {
    $styleBodyIndent = false;
} else {
    $styleBodyIndent = $GLOBALS['styleBodyIndent'];
}
if ($styleBodyIndent) {
    echo '/* Indented Body Style */' . "\n";
} else {
    echo '/* Non-indented Body Style */' . "\n";
}
//