	document.getElementById('cartoucheMenu').style.visibility='visible' ;
	document.getElementById('cartoucheMenu').style.textAlign = 'center' ;
	document.getElementById('cartoucheMenu').onclick = function() {document.location="kdo.htm"}; 
	document.getElementById('cartoucheMenu').style.border = "solid red 0px";
	document.getElementById('cartoucheMenu').style.cursor = 'pointer' ;
	document.getElementById('cartoucheMenu').style.background = 'transparent' ;
	document.getElementById('cartoucheMenu').style.marginLeft = '30px' ;

	var htmlContenu = "<img src='/images/cadeau.gif'>";
	afficheDescURL(htmlContenu);
	function afficheDescURL(toThis) 
  {
  if (document.getElementById)
    {
    document.getElementById("cartoucheMenu").innerHTML = toThis;
    }
  else if (document.all) 
    {
    document.all["cartoucheMenu"].innerHTML = toThis;
    }
  }
