// si le navigateur est mozilla, emulation de fonctionalités ie
var ie = document.all != null;
var moz = !ie && document.getElementById != null && document.layers == null;
if (moz) emulateHTMLModel();


function showPicture(urlPict, texte)
{
	//alert(" 1 ");
	ta = document.getElementById("legendephoto");
	tap = ta.parentNode;
	tap.removeChild(ta);

	tap.insertAdjacentHTML('afterbegin','');
	tap.insertAdjacentHTML('beforeEnd','<div id="legendephoto"><img src="'+urlPict+'" name="imgfull" border="0"/><br/>'+texte+'</div>');
	//window.location.replace("#top");
	//return true;
}
