function getUrl(addr) {  
	var r = $.ajax({  
	type: 'GET',  
	url: addr,  
	async: false  
	}).responseText;  
	return r;  
}
function changerVideo(video) {  
	$('#videoplayer').html(getUrl(video));
}

/*Affiche/masque bloc connexion
$("#btn_connexion").click(function() {
	$("#form_connexion").toggle();
	$("#emailid").focus();
});
*/
