function share(url, title) {
	document.getElementById("share_delicious").href = share_url("http://del.icio.us/post?url={url}&title={title}", url, title);
	document.getElementById("share_digg").href = share_url("http://digg.com/submit?phase=2&url={url}&title={title}", url, title);
	document.getElementById("share_furl").href = share_url("http://furl.net/storeIt.jsp?u={url}&t={title}", url, title);
	document.getElementById("share_netscape").href = share_url(" http://www.netscape.com/submit/?U={url}&T={title}", url, title);
	document.getElementById("share_yahoo_myweb").href = share_url("http://myweb2.search.yahoo.com/myresults/bookmarklet?u={url}&t={title}", url, title);
	document.getElementById("share_facebook").href = share_url("http://www.facebook.com/share.php?u={url}&t={title}", url, title);
	document.getElementById("share_google_bmarks").href = share_url("  http://www.google.com/bookmarks/mark?op=edit&bkmk={url}&title={title}", url, title);
	document.getElementById("share_technorati").href = share_url("http://www.technorati.com/faves?add={url}", url, title);
	document.getElementById("share_newsvine").href = share_url("http://www.newsvine.com/_wine/save?u={url}&h={title}", url, title);
	document.getElementById("share_magnolia").href = share_url("http://ma.gnolia.com/bookmarklet/add?url={url}&title={title}", url, title);
	document.getElementById("share_reddit").href = share_url("http://reddit.com/submit?url={url}&title={title}", url, title);
	document.getElementById("share_windows_live").href = share_url("https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url={url}&title={title}&top=1", url, title);
	return true;
}

function share_url(base, url, title) {
	base = base.replace('{url}', url);
	return base.replace('{title}', title);
}
