//=================================================================================== // 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(" "); //----------- furl ---------- document.writeln(" "); //----------- google ---------- document.writeln(" "); //----------- linkarena ---------- document.writeln(" "); //----------- oneview ---------- document.writeln(" "); //----------- webnews ---------- document.writeln(" "); //----------- wong ---------- document.writeln(" "); //----------- yahoo ---------- document.writeln(" "); //----------- yigg ---------- 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'furl': openWin('http://www.furl.net/storeIt.jsp?u='+url_escaped+'&keywords=&t='+title_escaped); 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'oneview': openWin('http://beta.oneview.de/quickadd/neu/addBookmark.jsf?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'yigg': openWin('http://yigg.de/neu?exturl='+url_escaped); break; } return false; } function openWin(url) { w=window.open(url); w.focus(); setTimeout('w.focus()',1000); }