function setBookmark (where) {                                                                                                              
	
	burl   = encodeURIComponent(location.href);                                                                                      
	btitle = encodeURIComponent(document.title);                                                                                   
	
	switch(where) {		                                                                                                          
		case 'digg':                                                                                                         
			window.open('http://digg.com/submit?phase=2&url='+burl+'&title='+btitle);                                                  
			break;                                                                                                                
		case 'maodi':                                                                                                         
			window.open('http://www.maodi.de/bookmarks/?action=add&address='+burl+'&title='+btitle);                                                  
			break;                                                                                                                
		case 'delicious':                                                                                                         
			window.open('http://del.icio.us/post?url='+burl+'&title='+btitle);                                                  
			break;                                                                                                                
		case 'mrwong':                                                                                                              
			window.open('http://www.mister-wong.de/index.php?action=addurl&bm_url='+burl+'&bm_description='+btitle);            
			break;                                                                                                                
		case 'yahoo':                                                                                                             
			window.open('http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+burl+'&t='+btitle);                           
			break;                                                                                                                
		case 'yigg':                                                                                                              
			window.open('http://yigg.de/neu?exturl='+burl+'&exttitle='+btitle);                                                 
			break;	                                                                                                              
		case 'furl':                                                                                                              
			window.open('http://www.furl.net/storeIt.jsp?u='+burl+'&t='+btitle);                                                
			break;                                                                                                                
		case 'google': 		                                                                                                      
			window.open('http://www.google.com/bookmarks/mark?op=add&hl=de&bkmk='+burl+'&title='+btitle);                       
			break;                                                                                                                
		case 'webnews': 		                                                                                                  
			window.open('http://www.webnews.de/einstellen?url='+burl+'&title='+btitle);                                         
			break;                                                                                                                
	}                                                                                                                             
}                                                                                                    