




/*
     FILE ARCHIVED ON 7:02:42 Mar 14, 2009 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 16:03:10 Jul 18, 2011.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
// http://www.quirksmode.org/js/selected.html
function sociable_get_selection() {
    if (window.getSelection)
        return "" + window.getSelection();
    else if (document.getSelection)
        return "" + document.getSelection();
    else if (document.selection)
        return "" + document.selection.createRange().text;
}

function sociable_description_link(link, attribute) {
    if (typeof(link.original_link) == "undefined")
        link.original_link = link.href;
    link.href = link.original_link + "&" + attribute + "=" + sociable_get_selection();
    return false;
}

