// JavaScript Document

function ShowImage(src)
{
	var img = document.getElementById("imgFiche");
	if(img)
	{
		img.src = "/Portals/0/Ressources/FicheSante/images/"+src;
		img.style.display = "";
	}
}

function HideImage(src)
{
	var img = document.getElementById("imgFiche");
	if(img)
	{
		img.style.display = "none";
	}
}