
/*
	Cette fonction permet d'afficher en grand l'image
	selectionne en miniature
*/
function afficherImage(nomDiv , url){
	var div = document.getElementById(nomDiv);
	div.innerHTML = "<img src='"+url+"' />";
}//fin fonction afficherImage

/*
	Cette fonction permet d'afficher les videosFlash dans la dic correspondante
*/
function afficherVideoFlash(nomDiv, url, nomVideo, width, height){
	var so = new SWFObject("./video/player.swf?file="+url+"&amp;autostart=1", nomVideo, width, height, "8", "#336699");
	so.addParam("quality", "high");
    so.addParam("wmode", "transparent");
    so.addParam("salign", "t");
    so.write(nomDiv);
	
}//fin afficherFlashVideo

/*
	Cette fonction permet d'ecouter une vaccation radio dans la div correspondate
*/
function afficherVaccation(nomDiv, url){
	
	var div = document.getElementById(nomDiv);
	var text = '<object type="application/x-shockwave-flash" data="./vaccation/dewplayer.swf?mp3='+url+'&amp;autostart=1&amp;bgcolor=FFFFFF" width="200" height="80"><param name="movie" value="./vaccation/dewplayer.swf?mp3='+url+'&amp;autostart=1&amp;bgcolor=FFFFFF" /></object>';
	div.innerHTML = text;

	
}//fin afficherVaccation
