function fb_post_points(points, game) {
	if (Prototype.Browser.Gecko) {
		fb_send_points(points, game);
	} else {
		window.open('fb.html?points=' + points + '&game=' + game, 'facebook_share');
	}
}

function fb_send_points(points, game) {
	FB.ensureInit(function(){
		FB.Connect.streamPublish('I just scored ' + points + ' points playing the ' + game + ' game at HappyHojoWorld.com', {'name':'HappyHojoWorld.com','href':'http://happyhojoworld.com'});
	});
}