//===================================================================================
// 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("
");
//----------- google ----------
document.writeln("
");
//----------- linkarena ----------
document.writeln("
");
//----------- magnolia ----------
document.writeln("
");
//----------- reddit ----------
document.writeln("
");
//----------- stumbleupon ----------
document.writeln("
");
//----------- wong ----------
document.writeln("
");
//----------- yahoo ----------
document.writeln("
");
//----------- yigg ----------
document.writeln("
");
//----------- linksilo ----------
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'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'reddit':
openWin('http://reddit.com/submit?url='+url_escaped+'&title='+title_escaped);
break; case'stumbleupon':
openWin('http://www.stumbleupon.com/submit?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; case'linksilo':
openWin('http://www.linksilo.de/index.php?area=bookmarks&func=bookmark_new&addurl='+url_escaped+'&addtitle='+title_escaped);
break; }
return false;
}
function openWin(url)
{
w=window.open(url);
w.focus();
setTimeout('w.focus()',1000);
}