// Si NRJ on un problème avec le code que j'ai récupérer chez eux qu'il me contacte : mica.2727 (arobase) hotmail.fr
function openRadio(url, type, webradio_width, webradio_height) { 
	return popUp(url,900,750,0); 
}

function popUp(url,largeur,hauteur,scrolling) { 
	window.open(url,'popup','width=' + largeur + ',height=' + hauteur + ',left='+(Math.round((screen.width-largeur)/2))+',top='+(Math.round((screen.height-hauteur)/2))+',scrollbars='+scrolling); 
}

function ChangeBlue(id,num) {
	if(num == 0) {
		document.getElementById("BLeft" + id).style.backgroundImage = "url(tpl/TCF_FINAL/img/menu/b_left_blue.png)";
		document.getElementById("BCent" + id).style.backgroundImage = "url(tpl/TCF_FINAL/img/menu/b_center_blue.png)";
		document.getElementById("BRigh" + id).style.backgroundImage = "url(tpl/TCF_FINAL/img/menu/b_right_blue.png)";
	} else if(num == 1) {
		document.getElementById("BLeft" + id).style.backgroundImage = "url(tpl/TCF_FINAL/img/menu/b_left.png)";
		document.getElementById("BCent" + id).style.backgroundImage = "url(tpl/TCF_FINAL/img/menu/b_center.png)";
		document.getElementById("BRigh" + id).style.backgroundImage = "url(tpl/TCF_FINAL/img/menu/b_right.png)";
	}
}
