/* - - - - - - - - - - - - - - - - - - - - - - -
  social Bookmarks
  - - - - - - - - - - - - - - - - - - - - - - - */

function setBookmark(bookAt) {
  doc=encodeURIComponent(location.href);
  title=encodeURIComponent(document.title);
  switch(bookAt) {
    case 'delicious':
      window.open('http://del.icio.us/post?url='+doc+'&title='+title);
      break;
    case 'alltagz':
      window.open('http://www.alltagz.de/bookmarks/?action=add&address='+doc+'&title='+title);
      break;
    case 'infopirat':
      window.open('http://infopirat.com/node/add/userlink?edit[url]='+doc+'&edit[title]='+title);
      break;
    case 'mrwong':
      window.open('http://www.mister-wong.de/index.php?action=addurl&bm_url='+doc+'&bm_description='+title);
      break;
    case 'blinkList':
      window.open('http://www.blinklist.com/index.php?Action=Blink/addblink.php&Description=&Url='+doc+'&Title='+title);
      break;
    case 'yahoo':
      window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+doc+'&t='+title);
      break;
    case 'yigg':
      window.open('http://yigg.de/neu?exturl='+doc+'&exttitle='+title);
      break;  
    case 'furl':
      window.open('http://www.furl.net/storeIt.jsp?u='+doc+'&t='+title);
      break;
    case 'oneview':
      window.open('http://beta.oneview.de:80/quickadd/neu/addBookmark.jsf?URL='+doc+'&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+'&title='+title+'&desc=&tags=');
      break;
    case 'google':     
      window.open('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+doc+'&title='+title);
      break;
    case 'webnews':     
      window.open('http://www.webnews.de/einstellen?url='+doc+'&title='+title);
      break;
  }
}