function ises6() {
    var ret = true;
    try {
        var arrowFunction = "var t = () => {};";
        var f = new Function(arrowFunction);
    }
    catch (e) {
        ret = false;
    }
    return ret;
}
if (!ises6())
    top.location.href = '/content/html/ie.htm';