function bookmarkOver(text){
	if (text == '') {
		text = '';
	} else {
		text='&nbsp;<strong>'+text+'</strong>';
	}
	document.getElementById('bookmarkText').innerHTML=text;
}
function bookmark(was) {
	bookmarkurl=encodeURIComponent(location.href);
	bookmarktitle=encodeURIComponent(document.title);
	switch(was) {		
		case 'delicious':
			window.open('http://del.icio.us/post?url='+bookmarkurl+'&title='+bookmarktitle);
			break;
		case 'wong':
			window.open('http://www.mister-wong.de/index.php?action=addurl&bm_url='+bookmarkurl+'&bm_description='+bookmarktitle);
			break;
		case 'blinkList':
			window.open('http://www.blinklist.com/index.php?Action=Blink/addblink.php&Description=&Url='+bookmarkurl+'&Title='+bookmarktitle);
			break;
		case 'yahoo':
			window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+bookmarkurl+'&t='+bookmarktitle);
			break;
		case 'yigg':
			window.open('http://yigg.de/neu?exturl='+bookmarkurl+'&exttitle='+bookmarktitle);
			break;	
		case 'furl':
			window.open('http://www.furl.net/storeIt.jsp?u='+bookmarkurl+'&t='+bookmarktitle);
			break;
		case 'taggle':
			window.open('http://taggle.de/addLinkDetails?mAddress='+bookmarkurl+'&title='+bookmarktitle+'&submitted=Weiter');
			break;
		case 'folkd':
			window.open('http://www.folkd.com/submit/page/'+bookmarkurl);
			break;
		case 'linkarena':	
			window.open('http://linkarena.com/bookmarks/addlink/?url='+bookmarkurl+'&title='+bookmarktitle+'&desc=&tags=');
			break;
		case 'google': 		
			window.open('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+bookmarkurl+'&title='+bookmarktitle);
			break;
		case 'spurl': 		
			window.open('http://www.spurl.net/spurl.php?url='+bookmarkurl+'&title='+bookmarktitle);
			break;
		case 'co.mments': 		
			window.open('http://co.mments.com/track?url='+bookmarkurl+'&title='+bookmarktitle);
			break;
		case 'digg.com': 		
			window.open('http://digg.com/submit?phase=2&url='+bookmarkurl+'&title='+bookmarktitle);
			break;
		case 'blinkbits': 		
			window.open('http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url='+bookmarkurl+'&title='+bookmarktitle);
			break;
		case 'ma.gnolia': 		
			window.open('http://ma.gnolia.com/beta/bookmarklet/add?url='+bookmarkurl+'&title='+bookmarktitle);
			break;
		case 'technorati': 		
			window.open('http://technorati.com/faves/?add='+bookmarkurl+'&title='+bookmarktitle);
			break;			
	}
}