function sendToFB(score, lang){
	var u=location.href;
	var title = "";
	switch(lang){
		case "fr":
			title="a joué aux Amazing friendz";
		break;
		case "test":
			title="joue à Clash of Heroes";
		break;
		default:
			title="Merial Amazing friendz";
		break;
	}
	if(u.indexOf("?")!=-1 && u.indexOf("?")!=0) u=u.substring(0,u.indexOf("?"));
	var url = "http://www.facebook.com/sharer.php?u=";
	url += encodeURIComponent(u+"?score="+score+"&lang="+lang);
	url += '&t='+encodeURIComponent(title);
	window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
}
