
	function click_share(destination) {
		page = location.href;
		title = document.title;
		
		if (destination=="facebook") {
			window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(page)+'&t='+encodeURIComponent(title),'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		} else if (destination=="delicious") {
			window.open('http://delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(page)+'&amp;title='+encodeURIComponent(title), 'delicious','toolbar=no,width=550,height=550');
			return false;
		}
	}