/* for the IE only workarounds */
var ie = (document.all) ? true : false;
	
function setBookmark (where) { 
	burl = encodeURIComponent(location.href); 
	btitle = encodeURIComponent(document.title); 

	switch(where) { 
		case 'Twitter': window.open('http://twitter.com/home/?status='+btitle+' '+burl); break; 
		case 'Facebook': window.open('http://www.facebook.com/sharer.php?u='+burl+'&title='+btitle+'&amp;desc='); break; 
		case 'Delicious': window.open('https://secure.delicious.com/post?url='+burl+'&amp;title='+btitle); break; 
		case 'Mrwong': window.open('http://www.mister-wong.de/index.php?bm_url='+burl+'&bm_notice=&bm_description='+btitle+'&action=addurl'); break; 
		case 'Webnews': window.open('http://www.webnews.de/einstellen?url='+burl+'&title='+btitle); break; 
		case 'Yigg': window.open('http://yigg.de/neu?exturl='+burl); break; 
		case 'StudiVZ': window.open('http://www.studivz.net/Suggest/Selection/?u='+burl+'&desc='+btitle+'&prov=ring1.de'); break; 
		case 'GoogleBM': window.open('http://www.google.com/bookmarks/mark?op=edit&bkmk='+burl+'&title='+btitle); break; 
		} 
	}

