function bookmarkDo(dienst) {
	var bmurl=encodeURIComponent(window.location.protocol+'//'+(window.location.hostname+window.location.pathname).replace(/\/:.*?\//g, '/'));
	var bmtitle=encodeURIComponent(document.title);
	switch(dienst) {		
		case 'delicious':
			window.open('http://del.icio.us/post?url='+bmurl+'&title='+bmtitle);
			break;
		case 'mrwong':
			window.open('http://www.mister-wong.de/index.php?action=addurl&bm_url='+bmurl+'&bm_description='+bmtitle);
			break;		
		case 'yigg':
			window.open('http://yigg.de/neu?exturl='+bmurl+'&exttitle='+bmtitle);
			break;	
		case 'furl':
			window.open('http://www.furl.net/storeIt.jsp?u='+bmurl+'&t='+bmtitle);
			break;
		case 'google': 		
			window.open('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+bmurl+'&title='+bmtitle);
			break;
		case 'webnews': 		
			window.open('http://www.webnews.de/einstellen?url='+bmurl+'&title='+bmtitle);
			break;	
        case 'facebook': 		
			window.open('http://www.facebook.com/sharer.php?u='+bmurl+'&t='+bmtitle);
			break;	

	}
}