function share(share_type, share_url, share_title)
{
	switch(share_type)
	{
		case 'facebook':
			window.open('http://www.facebook.com/sharer.php?u=' + share_url + '&t=' + share_title, share_type);
			break;
		case 'twitter':
			window.open('http://twitter.com/home?status=' + share_title + ' ' + share_url, share_type);
			break;
		case 'delicious':
			window.open('http://www.delicious.com/save?url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'yahoo-bookmarks':
			window.open('http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&u=' + share_url + '&t=' + share_title, share_type);
			break;
		case 'yahoo-mail':
			window.open('http://compose.mail.yahoo.com/?To=&Subject=' + share_title + '&body=' + share_url, share_type);
			break;
		case 'viadeo':
			window.open('http://www.viadeo.com/shareit/share/?url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'stumbleupon':
			window.open('http://www.stumbleupon.com/submit?url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'reddit':
			window.open('http://reddit.com/submit?url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'netvibes':
			window.open('http://netvibes.com/share?url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'myspace':
			window.open('http://www.myspace.com/Modules/PostTo/Pages/?u=' + share_url, share_type);
			break;
		case 'live':
			window.open('http://profile.live.com/badge?url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'linkedin':
			window.open('http://www.linkedin.com/shareArticle?mini=true&ro=false&summary=&source=&url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'google-reader':
			window.open('http://www.google.com/reader/link?url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'google-buzz':
			window.open('http://www.google.com/buzz/post?url=' + share_url, share_type);
			break;
		case 'google-bookmarks':
			window.open('http://www.google.com/bookmarks/mark?op=add&bkmk=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'gmail':
			window.open('http://mail.google.com/mail/?view=cm&fs=1&to=&su=' + share_title + '&body=' + share_url, share_type);
			break;
		case 'friendster':
			window.open('http://www.friendster.com/sharer.php?u=' + share_url + '&t=' + share_title, share_type);
			break;
		case 'friendfeed':
			window.open('http://friendfeed.com/share?url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'evernote':
			window.open('http://www.evernote.com/clip.action?url=' + share_url + '&title=' + share_title + '&body=' + share_url + ' ' + share_title, share_type);
			break;
		case 'digg':
			window.open('http://digg.com/submit?url=' + share_url + '&title=' + share_title, share_type);
			break;
		case 'blogger':
			window.open('http://www.blogger.com/blog_this.pyra?t=&u=' + share_url + '&n=' + share_title, share_type);
			break;
	}
}
