// u = URL to link
// t = Title for link

function FacebookShareButtonClicked(u, t){
	if(! u)	var u = location.href;
	if(! t)	var t = document.title;
	
	var win = window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t), 'fbsharer', 'toolbar=0, status=0, width=626, height=436', '');
	if (win != null){
		win.focus();
	}
	
	return false;
}
