﻿function History_setTitle(args) {
    document.title = 'STONEFLY - Absolute Comfort: ' + args;
}

function History_addHistory(args) {
    var a = unFocus.History;
    a.addHistory(args);
}

function ufo_go2Section() {
    if (event.propertyName == 'location') {
        var l = new String(document.location).replace(" ", "");
        var p = l.indexOf("#");
        if (p > 0 && p < l.length) {
            var s = l.substring(p + 1, l.length);
            document.shop.SetVariable("unFocusHistoryUpdate", s);
        }
    }
}
