function socialBookmark(link)
{
    var href = encodeURIComponent(location.href);
    var title = encodeURIComponent(document.title);

    var services = {};
    services["mister-wong"] = "http://www.mister-wong.de/index.php?action=addurl&bm_url=%href%&bm_notice=&bm_description=%title%&bm_tags=";
    services["webnews"] = "http://www.webnews.de/einstellen?url=%href%&title=%title%";
    services["yigg"] = "http://yigg.de/neu?exturl=%href%";
    services["icio"] = "http://del.icio.us/post?v=2&url=%href%&notes=&tags=&title=%title%";
    services["yahoo"] = "http://myweb2.search.yahoo.com/myresults/bookmarklet?t=%title%&d=&tag=&u=%href%";
    services["google"] = "http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk=%href%&annotation=&labels=&title=%title%";
    services["technorati"] = "http://technorati.com/faves?add=%href%&tag=";

    var url = "";
    for (service in services) {
        if (link.href.indexOf(service) != -1) {

            url = services[service].replace(/%href%/, href);
            url = url.replace(/%title%/, title);

            window.open(url);
            return false;
        }
    }

    return false;
}

