function FacebookShareButtonClicked(){
	var u=location.href;
	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;
}