// JavaScript Document

function AfficherPhotoBoutique(url,id)
{
	if( document.getElementById(id) )
	{
		document.getElementById(id).src=url;
	}	
}

function affiche()
{}

function AfficherDiv(id)
{
	if( document.getElementById(id) )
	{
		document.getElementById(id).style.display="block";
	}	
}

function CacherDiv(id)
{
	if( document.getElementById(id) )
	{
		document.getElementById(id).style.display="none";
	}	
}
