function provideSocialBookmark(provider) {
	var sburl=encodeURIComponent(location.href);
	var sbtitle=encodeURIComponent(document.title);
	switch(provider) {
		case 'delicious':
			window.open('http://del.icio.us/post?url='+sburl+'&title='+sbtitle);
			break;
		case 'wong':
			window.open('http://www.mister-wong.de/index.php?action=addurl&bm_url='+sburl+'&bm_description='+sbtitle);
			break;
		case 'furl':
			window.open('http://www.furl.net/storeIt.jsp?u='+sburl+'&t='+sbtitle);
			break;
		case 'yigg':
			window.open('http://yigg.de/neu?exturl='+sburl+'&exttitle='+sbtitle);
			break;
		case 'webnews':
			window.open('http://www.webnews.de/einstellen?url='+sburl+'&exttitle='+sbtitle);
			break;
		case 'wikio':
			window.open('http://www.wikio.de/addsource');
			break;
	}
}