function playRadio() {
	if (!window.open("?player/listen", "player", "width=440, height=290, toolbar=no, menubar=no, resizable=no, location=no, directories=no, status=no, scrollbars=no, copyhistory=no")) {
		alert("Veuillez désactivez votre anti-popup afin d'écouter la radio.");
	}
//	return false;
}
jQuery.readyAjax(function() {
	jQuery('a[href*=player/listen]').each(function(i) {
		if (jQuery(this).data('handled') != true) {
			jQuery(this).data('handled', true);
			jQuery(this).click(function() {
				playRadio();
				return false;
			});
		}
	});
});
