//OUVERTURE DU POPUP 
function popupWin(popupName,url,popupWidth,popupHeight) {
	popupDef = window.open(url, popupName,"width=" + popupWidth + ",height=" + popupHeight + ",resizable=no,scrollbars=no,toolbar=no,status=no,location=no,directories=no");
	return false;
}

function menu_video(data) {
	for (i=1; i<=nombre_emission; i++) {
		document.getElementById('ulemissions'+i).style.display = "none";
	}	
	document.getElementById('ulemissions'+data).style.display = "block";	
}

function menu_bio_tog(id1,id2) {
	$("div#page"+id1+"_bio").slideToggle("slow");
	$("div#page"+id2+"_bio").slideToggle("slow");
}