function ArticleSocialBookmark(id) {
	var strHref = '';

	switch(id)
	{
		case 'newsvine':
			strHref = 'http://www.newsvine.com/_tools/seed&save?u=' + window.location.href + '&h=' + document.title + '';
			break;
		case 'digg':
			strHref = 'http://digg.com/submit?phase=2&amp;url=' + window.location.href + '&title=' + document.title + '';
			break;
		case 'reddit':
			strHref = 'http://reddit.com/submit?url=' + window.location.href + '/&amp;title=' + document.title + '';
			break;
		case 'del.icio.us':
			strHref = 'http://del.icio.us/post?url=' + window.location.href + '&amp;title=' + document.title + '';
			break;
		case 'furl':
			strHref = 'http://www.furl.net/storeIt.jsp?u=' + window.location.href + '&t=' + document.title + '';
			break;
		case 'stumble':
			strHref = 'http://www.stumbleupon.com/submit?url=' + window.location.href + '&amp;title=' + document.title + '';
			break;
		case 'technorati':
			strHref = 'http://technorati.com/faves?sub=addfavbtn&amp;add=' + window.location.href + '&t=' + document.title + '';
			break;
		case 'facebook':
			strHref = 'http://www.facebook.com/sharer.php?u=' + window.location.href + '&amp;t=' + document.title + '';
			break;
		case 'twitter':
			strHref = 'http://twitthis.com/twit?url=' + window.location.href +'&title=' + document.title + '';
			break;
		case 'favorites':
			ArticleaddToFavorites();
			break;
		case 'print':			
			window.print();
			break;
		case 'google':
			strHref = 'http://www.google.com/bookmarks/mark?op=add&amp;bkmk=' + window.location.href + '&amp;title=' + document.title + '';
			break;
		case 'simpy':
			strHref = 'http://www.simpy.com/simpy/LinkAdd.do?href=' + window.location.href + '&title=' + document.title + '';
			break;
		case 'mixx':
			strHref = 'http://www.mixx.com/submit?page_url=' + window.location.href + '';
			break;
		case 'ask':
			strHref = 'http://myjeeves.ask.com/mysearch/BookmarkIt?v=1.2&t=webpages&url=' + window.location.href + '&title=' + document.title + '';
			break;
		case 'myspace':
			strHref = 'http://www.myspace.com/Modules/PostTo/Pages/?c=' + window.location.href + '&t=' + document.title + '';
			break;
		case 'yahoomyweb':
			strHref = 'http://myweb.yahoo.com/myresults/bookmarklet?ei=UTF-8&u=' + window.location.href + '&t=' + document.title + '';
			break;
		case 'livebookmarks':
			strHref = 'https://favorites.live.com/quickadd.aspx?marklet=0&mkt=en-us&url=' + window.location.href + '&title=' + document.title + '';
			break;
		case 'yahoobookmarks':
			strHref = 'http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&u=' + window.location.href + '&t=' + document.title + '';
			break;
		case 'aolfav':
			strHref = 'http://favorites.my.aol.com/ffclient/webroot/0.4.1/src/html/addBookmarkDialog.html?url=' + window.location.href + '&title=' + document.title + '';
			break;
		case 'slashdot':
			strHref = 'http://slashdot.org/bookmark.pl?url=' + window.location.href + '&title=' + document.title + '';
			break;
	}
	if (id != 'favorites'  && id != 'print') {
		window.open(strHref);	
	}
}

function ArticleaddToFavorites() { 
	if (window.external) { 
		window.external.AddFavorite(window.location.href,document.title) 
	} 
	else { 
		alert("Sorry! Your browser doesn't support this function."); 
	} 
}