// Social Bookmarks setzen

titel = document.title;
titel = titel.split('"');
titel = titel.join('');
titel = titel.split('-');
titel = titel[0] + ' - ' + titel[1];

// alert(titel);

webadresse = location.href

document.write('<p class="bookmark">Diesen Artikel bookmarken / Bookmark this article:<br/> ');
document.write('<a href="');
document.write('http://del.icio.us/post?v=2&url=' + webadresse + '&title=' + titel);
document.write('" title="Bei del.icio.us bookmarken"><img src="/icons/delicious.gif" alt="del.icio.us" /></a>');
document.write('<a href="');
document.write('http://www.mister-wong.de/index.php?action=addurl&bm_url='+ webadresse + '&bm_notice=&bm_description='+ titel +'&bm_tags=');
document.write('" title="Bei Mr Wong bookmarken"><img src="/icons/misterwong.gif" alt="Mr Wong"  /></a>');
document.write('<a href="');
document.write('http://yigg.de/neu?exturl='+ webadresse);
document.write('" title="Bei Yigg bookmarken"><img src="/icons/yigg.gif" alt="Yigg" /></a>');
document.write('<a href="');
document.write('http://www.webnews.de/einstellen?url='+ webadresse +'&title='+ titel );
document.write('" title="Bei Webnews bookmarken"><img src="/icons/webnews.gif" alt="Webnews"  /></a>');
document.write('<a href="');
document.write('http://myweb2.search.yahoo.com/myresults/bookmarklet?t=' + titel + '&d=&tag=&u=' + webadresse);
document.write('" title="Bei Yahoo bookmarken"><img src="/icons/yahoo.gif" alt="Yahoo"   /></a>');
document.write('<a href="');
document.write('http://www.readster.de/submit/?url=' + webadresse + '&title=' + titel);
document.write('" title="Bei Readster bookmarken"><img src="/icons/readster.gif" alt="Readster"   /></a>');
document.write('</p>');
