
function MakeQuery() {
    var qstr = '';
    if (window.QUERY_STRING.length > 1) {
        if (window.QUERY_STRING.indexOf('utm_source') == -1) {
            qstr = "?utm_source=" + window.QUERY_STRING.replace('&', '');
        }
        else {
            qstr = "?" + window.QUERY_STRING;
        }
    }

    return qstr;
}

function GoTo(url) {
    // this function will only serve relative to root
    InsideClickTracker();
    window.setTimeout('document.location = "/' + url + '"+ MakeQuery()',100);
}

