//===================================================================================
// 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";
//----------- del ----------
document.writeln("
");
//----------- digg ----------
document.writeln("
");
//----------- folkd ----------
document.writeln("
");
//----------- google ----------
document.writeln("
");
//----------- icio ----------
document.writeln("
");
//----------- linkarena ----------
document.writeln("
");
//----------- oneview ----------
document.writeln("
");
//----------- stumbleupon ----------
document.writeln("
");
//----------- technorati ----------
document.writeln("
");
//----------- webnews ----------
document.writeln("
");
//----------- wong ----------
document.writeln("
");
//----------- yahoo ----------
document.writeln("
");
//----------- seekxl ----------
document.writeln("
");
//----------- stern ----------
document.writeln("
");
function social_add(name)
{
switch (name) { 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'folkd':
openWin('http://www.folkd.com/submit/'+(url_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'icio':
openWin('http://www.icio.de/add.php?url='+url_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'stumbleupon':
openWin('http://www.stumbleupon.com/submit?url='+url_escaped+'&title='+title_escaped);
break; case'technorati':
openWin('http://www.technorati.com/faves?add='+url_escaped+'&tag=');
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);
}