// Social Bookmarks
// der HTML-Text befindet sich in /incUSER/socials/bookmarks.php5
// die Icons sind in /images/socialBM/ gelagert
// Die JS-Funktion 'socialBM(id);' ist in /scripts/socialBM.js definiert
// und wird, wenn notwendig und gew�nscht, in /incDINL/generalHeader.php5 in den HEADbereich der Seite eingesetzt
function socialBM(id) {
	sBMurl=encodeURIComponent(location.href);
	sBMtitle=encodeURIComponent(document.title);
	// alert(id+' '+sBMurl+' '+sBMtitle);
	// alert(decodeURIComponent(sBMurl));
	switch(id) {
		case 'del':
			window.open('http://www.delicious.com/save?v=5&noui&jump=close&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title), 'delicious','toolbar=no,width=550,height=550');
			break;
		case 'mister-wong':
			window.open('http://www.mister-wong.de/addurl/?bm_url='+sBMurl+'&bm_description='+sBMtitle);
			break;
		case 'linkarena':
			window.open('http://www.linkarena.com/bookmarks/addlink/?url='+sBMurl+'&title='+sBMtitle+'&desc=webdesign+foto+print+aus+kiel&tags=webdesign+kiel');
			break;
		case 'facebook':
			window.open('http://www.facebook.com/share.php?u='+sBMurl+'&t='+sBMtitle+'&desc=&tags=');
			break;
		case 'twitter':
			window.open('http://twitter.com/share?url='+sBMurl+'&text='+sBMtitle);
			break;
	}
}

function socialBMover(txt){
	if (txt == '') {
		var text = '&nbsp;';
	} else {
		var text = '&nbsp;<strong>'+txt+'</strong>';
	}
	document.getElementById('socialBMover').innerHTML=text;
}
