//=================================================================================== // 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"; //----------- google ---------- document.writeln(" "); //----------- netscape ---------- document.writeln(" "); //----------- stumbleupon ---------- document.writeln(" "); //----------- webnews ---------- document.writeln(" "); //----------- wong ---------- document.writeln(" "); //----------- yahoo ---------- document.writeln(" "); //----------- seekxl ---------- document.writeln(" "); //----------- stern ---------- document.writeln(" "); function social_add(name) { switch (name) { case'google': openWin('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+url_escaped+'&annotation=&labels=&title='+title_escaped); break; case'netscape': openWin('http://www.netscape.com/submit/?U='+url_escaped+'&T='+title_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'seekxl': openWin('http://social-bookmarking.seekxl.de/?add_url='+url_escaped+'&title='+title_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); }