function doClick(url){
    url = decode64(url);
    var a = document.createElement("a");
    if(!a.click) { ;
        window.location = url;
        return;
    }
    a.setAttribute("href", url);
    a.setAttribute("target","_blank");
    a.style.display = "none";
    document.body.appendChild(a);
    a.click();
}

function u(code)
{
    code=unescape(code);
    var c=String.fromCharCode(code.charCodeAt(0)-code.length);
    for(var i=1;i<code.length;i++){
        c+=String.fromCharCode(code.charCodeAt(i)-c.charCodeAt(i-1));
    }
    return c;
}
