var currentlocation = window.location;
function shareThisLink(service) {
    var icqLinkDesc = 'Seu contato mandou um link, clique para ver </a> <i>- via ICQ share </i>';
    if (service == 'icq') {
        // Firefox escapes variables passed onto ICQLRun... twice! That's bad lets find it!
        var is_firefox = navigator.userAgent.indexOf('Gecko');
        if (is_firefox != -1 || window.opera != undefined) {
            // Opera is especially weird for doing the same.
            // use the old sharing method for Gecko based browsers and Opera
            document.location = 'http://www.icq.com/people/cmd.php?action=send_url&dest=' + currentlocation + '&desc=' + icqLinkDesc;
        }
        else {
            window.location = 'icq:send_url?url=' + escape(currentlocation) + '&urldesc=' + escape(icqLinkDesc);
        }
    };
};
document.write('<a href="javascript:shareThisLink(\'icq\');" title="Indisponível no momento | Em atualização"><img title="Indisponível no momento | Em atualização" style="margin-bottom:-4px; border:0px;" src="http://www.icqrulez.com/imagens/share/status_unk.png"></a>');