function sbOver(text) {
	if (text == '') {
		text = '...';
	} else {
		text='&nbsp;<strong>'+text+'</strong>';
	}
	document.getElementById('sbText').innerHTML=text;
}
function sbDo(was) {
	sburl=encodeURIComponent(location.href);
	sbtitle=encodeURIComponent(document.title);
	switch(was) {		
		case 'stumbleupon': 		
		window.open('http://www.stumbleupon.com/submit?url='+sburl+'&title='+sbtitle);
		break;

		case 'delicious':
		window.open('http://del.icio.us/post?url='+sburl+'&title='+sbtitle);
		break;
		
		case 'google':
		window.open('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+sburl+'&title='+sbtitle);
		break;	
		
		case 'linkarena':	
		window.open('http://linkarena.com/bookmarks/addlink/?url='+sburl+'&title='+sbtitle+'&desc=&tags=');
		break;		

		case 'wong':
		window.open('http://www.mister-wong.de/index.php?action=addurl&bm_url='+sburl+'&bm_description='+sbtitle);
		break;
		
		case 'linked':
		window.open('http://www.linkedin.com/shareArticle?mini=true&url='+sburl+'&title='+sbtitle);
		break;		
		
		case 'plaxo':
		window.open('http://www.plaxo.com/events?share_link='+sburl+'&desc='+sbtitle);
		break;
	}
}

