function DisplayInfo(variable){
	identifiant		=	'photo' + variable;	
	identifiant2	=	'divinfodumoment' + variable;	


	if (document.getElementById('photo1'))
		document.getElementById('photo1').style.display = 'none';
	if (document.getElementById('photo2'))
		document.getElementById('photo2').style.display = 'none';
	if (document.getElementById('photo3'))
		document.getElementById('photo3').style.display = 'none';
	document.getElementById(identifiant).style.display = 'block';

	if (document.getElementById('divinfodumoment1'))
		document.getElementById('divinfodumoment1').style.backgroundImage  = 'url(./img/img_infodumoment3.jpg)';
	if (document.getElementById('divinfodumoment2'))
		document.getElementById('divinfodumoment2').style.backgroundImage  = 'url(./img/img_infodumoment3.jpg)';
	if (document.getElementById('divinfodumoment2'))
		document.getElementById('divinfodumoment3').style.backgroundImage  = 'url(./img/img_infodumoment3.jpg)';
	document.getElementById(identifiant2).style.backgroundImage  = 'url(./img/img_infodumoment2.jpg)';
}

function DisplayWebTV(variable){
	identifiant		=	'webtvimg' + variable;	
	identifiant2	=	'divwebtv' + variable;	

	if (document.getElementById('webtvimg1'))
		document.getElementById('webtvimg1').style.display = 'none';
	if (document.getElementById('webtvimg2'))
		document.getElementById('webtvimg2').style.display = 'none';
	if (document.getElementById('webtvflv'))
		document.getElementById('webtvflv').style.display = 'none';
	document.getElementById(identifiant).style.display = 'block';

	if (document.getElementById('divwebtv1'))
		document.getElementById('divwebtv1').style.backgroundImage  = 'url(./img/img_infodumoment3.jpg)';
	if (document.getElementById('divwebtv2'))
		document.getElementById('divwebtv2').style.backgroundImage  = 'url(./img/img_infodumoment3.jpg)';
	document.getElementById(identifiant2).style.backgroundImage  = 'url(./img/img_infodumoment2.jpg)';
}

function PlayWebTV(video,photo){
	player = document.getElementById("ply");
	player.sendEvent("LOAD", {file:'upload/media/' + video, image:'upload/media/' + photo});
}

function DisplayMatch(variable){
	
	identifiant		=	'resultat' + variable;	
	identifiant2	=	'diviresultat' + variable;	
	
	document.getElementById('resultat1').style.display = 'none';
	document.getElementById('resultat2').style.display = 'none';
	document.getElementById('resultat3').style.display = 'none';
	document.getElementById(identifiant).style.display = 'block';
	
	document.getElementById('diviresultat1').style.backgroundImage  = 'url(./img/menu/cadre_lastmatch_ina.png)';
	document.getElementById('diviresultat2').style.backgroundImage  = 'url(./img/menu/cadre_nextmatch_ina.png)';
	document.getElementById('diviresultat3').style.backgroundImage  = 'url(./img/menu/cadre_classement_ina.png)';
	if (variable == 1){
		document.getElementById(identifiant2).style.backgroundImage  = 'url(./img/menu/cadre_lastmatch_act.png)';
	}
	if (variable == 2){
		document.getElementById(identifiant2).style.backgroundImage  = 'url(./img/menu/cadre_nextmatch_act.png)';
	}
	if (variable == 3){
		document.getElementById(identifiant2).style.backgroundImage  = 'url(./img/menu/cadre_classement_act.png)';
	}
}



