     
     
     function bookThis(bookTarget) {
        
             doc=encodeURIComponent(location.href);
             title=encodeURIComponent(document.title);
             
             switch(bookTarget) {
                     case 'delicious':
                             window.open('http://del.icio.us/post?url='+doc+'&amp;title='+sbtitle);
                             break;
                     case 'mrwong':
                             window.open('http://www.mister-wong.de/index.php?action=addurl&amp;bm_url='+doc+'&amp;bm_description='+title);
                             break;
                     case 'blinkList':
                             window.open('http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url='+doc+'&amp;Title='+title);
                             break;
                     case 'yahoo':
                             window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+doc+'&amp;t='+title);
                             break;
                     case 'yigg':
                             window.open('http://yigg.de/neu?exturl='+doc+'&amp;exttitle='+title);
                             break;
                     case 'furl':
                             window.open('http://www.furl.net/storeIt.jsp?u='+doc+'&amp;t='+title);
                             break;
                     case 'oneview':
                             window.open('http://beta.oneview.de:80/quickadd/neu/addBookmark.jsf?URL='+doc+'&amp;title='+title);
                             break;
                     case 'folkd':
                             window.open('http://www.folkd.com/submit/page/'+doc);
                             break;
                     case 'linkarena':
                             window.open('http://linkarena.com/bookmarks/addlink/?url='+doc+'&amp;title='+title+'&amp;desc=&amp;tags=');
                             break;
                     case 'google':
                             window.open('http://www.google.com/bookmarks/mark?op=add&amp;hl=de&amp;bkmk='+doc+'&amp;title='+title);
                             break;
                     case 'webnews':
                             window.open('http://www.webnews.de/einstellen?url='+doc+'&amp;title='+title);
                             break;
             }
     }