function setBookmark (where) 
	{ 
	burl = encodeURIComponent(location.href); 
	btitle = encodeURIComponent(document.title); 
	switch(where) 
		{ 
		case 'Mrwong': window.open('http://www.mister-wong.de/index.php?action=addurl&bm_url='+burl+'&bm_notice=&bm_description='+btitle); break; 
		case 'Google': window.open('http://www.google.com/bookmarks/mark?op=add&bkmk='+burl+'&title='+btitle); break;
		case 'myspace': window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+burl+'&t='+btitle); break; 
		case 'Facebook': window.open('http://www.facebook.com/sharer.php?u='+burl+'&t='+btitle); break; 
		}
	}