//=================================================================================== // Social Bookmarks // version 2.0 // // Copyright-Notice: // (C) 2006/07 by Grizzly Werbeagentur GmbH - http://www.grizzly.cc // // This script can be used free of charged as long as the received code remains // completly unchanged! Sites which change the code in any way will get blacklisted! // //=================================================================================== var url_escaped = encodeURIComponent(location.href); var title_escaped = encodeURIComponent(document.title); var socialbookmarks_bookmarkwith = "Bookmark with"; //----------- blinklist ---------- document.writeln(" "); //----------- del ---------- document.writeln(" "); //----------- digg ---------- document.writeln(" "); //----------- diigo ---------- document.writeln(" "); //----------- google ---------- document.writeln(" "); //----------- linkarena ---------- document.writeln(" "); //----------- magnolia ---------- document.writeln(" "); //----------- netvouz ---------- document.writeln(" "); //----------- spurl ---------- document.writeln(" "); //----------- stumbleupon ---------- document.writeln(" "); //----------- webnews ---------- document.writeln(" "); //----------- wong ---------- document.writeln(" "); //----------- yahoo ---------- document.writeln(" "); //----------- stern ---------- document.writeln(" "); function social_add(name) { switch (name) { case'blinklist': openWin('http://www.blinklist.com/index.php?Action=Blink/addblink.php&Description=&Tag=&Url='+url_escaped+'&Title='+title_escaped); break; case'del': openWin('http://del.icio.us/post?v=2&url='+url_escaped+'¬es=&tags=&title='+title_escaped); break; case'digg': openWin('http://digg.com/submit?phase=2&url='+url_escaped+'&bodytext=&tags=&title='+title_escaped); break; case'diigo': openWin('http://www.diigo.com/post?url='+url_escaped+'&title='+title_escaped+'&tag=&comments='); break; case'google': openWin('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+url_escaped+'&annotation=&labels=&title='+title_escaped); break; case'linkarena': openWin('http://www.linkarena.com/bookmarks/addlink/?url='+url_escaped+'&title='+title_escaped+'&desc=&tags='); break; case'magnolia': openWin('http://ma.gnolia.com/bookmarklet/add?url='+url_escaped+'&title='+title_escaped+'&description=&tags='); break; case'netvouz': openWin('http://www.netvouz.com/action/submitBookmark?url='+url_escaped+'&description=&tags=&title='+title_escaped+'&popup=yes'); break; case'spurl': openWin('http://www.spurl.net/spurl.php?v=3&tags=&title='+title_escaped+'&url='+url_escaped); break; case'stumbleupon': openWin('http://www.stumbleupon.com/submit?url='+url_escaped+'&title='+title_escaped); break; case'webnews': openWin('http://www.webnews.de/einstellen?url='+url_escaped+'&title='+title_escaped); break; case'wong': openWin('http://www.mister-wong.de/index.php?action=addurl&bm_url='+url_escaped+'&bm_notice=&bm_description='+title_escaped+'&bm_tags='); break; case'yahoo': openWin('http://myweb2.search.yahoo.com/myresults/bookmarklet?t='+title_escaped+'&d=&tag=&u='+url_escaped); break; case'stern': openWin('http://tausendreporter.stern.de/submit.php?url='+url_escaped); break; } return false; } function openWin(url) { w=window.open(url); w.focus(); setTimeout('w.focus()',1000); }