function ShowTitle(text) {
	  if (text = '') {
		text = ('...');
	} else {
		text = ('<strong>'+text+'</strong>');
	}
	document.getElementById('bmText').innerHTML=text;
}
function ShowBookmark(site) {
	bmurl=encodeURIComponent(location.href);
	bmtitle=encodeURIComponent(document.title);
	switch(site) {		
		case 'linkarena':	
			window.open('http://linkarena.com/bookmarks/addlink/?url='+bmurl+'&title='+bmtitle+'&desc=&tags=');
			break;
		case 'webnews': 		
			window.open('http://www.webnews.de/einstellen?url='+bmurl+'&title='+bmtitle);
			break;
		case 'delicious':
			window.open('http://del.icio.us/post?url='+bmurl+'&title='+bmtitle);
			break;
		case 'google':
			window.open('http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk='+bmurl+'&title='+bmtitle);
			break;
		case 'misterwongde':
			window.open('http://www.mister-wong.de/index.php?action=addurl&amp;bm_url='+bmurl+"&amp;bm_description="+bmtitle);
			break;
		case 'technorati':
			window.open('http://technorati.com/faves?add='+bmurl+'');
			break;
		case 'facebook':
			window.open('http://www.facebook.com/share.php?u='+bmurl+'');
			break;
		}
}

