function move_over(text) {
	if (text == '') {text = '   ';}
        else {text='&nbsp;<strong>'+text+'</strong>';}
	document.getElementById('sbText').innerHTML=text;
}

function on_klick(was) {
	sburl=encodeURIComponent(location.href);
	sbtitle=encodeURIComponent(document.title);

	switch(was) {	
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 'yahoo':
      window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+sburl+'&t='+sbtitle);
      break;
case 'facebook':
      window.open('http://www.facebook.com/sharer.php?u='+sburl+'&t='+sbtitle);
      break;		        
case 'twitter':
      window.open('http://twitter.com/home?status='+sburl);
      break;
      }
}

