<!-- hide JavaScript from non-JavaScript browsers

var brw_agnt = navigator.userAgent.toLowerCase();

    if (brw_agnt.indexOf("firefox") >= 0) {
    var ic = brw_agnt.indexOf("firefox") + 8;
    brw_ver = brw_agnt.substr(ic,8);
    brw_name = 'FF';
    } 

    else if (brw_agnt.indexOf("msie") >= 0) {
    var ic = brw_agnt.indexOf("msie") + 5;
    brw_ver = brw_agnt.substr(ic,3);
    brw_ver_m = parseInt (brw_ver.substr(0,1));
    brw_name = 'IE';
    }

    else {
    brw_name = 'OTHER';
    brw_ver = 'N/A'
    }

    if (brw_name == 'FF') window.location.replace ("chooze_v1/index_08.html");
    else if (brw_name == 'IE' && brw_ver_m >= 7) window.location.replace ("chooze_v1/index_08.html");
    else if (brw_name == 'IE' && brw_ver_m <= 6) window.location.replace ("chooze_v1/index.html");
    else window.location.replace ("chooze_v1/index_no_ie.html");

//--> end hide JavaScript