// JavaScript Document

function affiche_actu(){
desc = "<div class='fermetext'>Fermer</div>"      
      +"<img src='image/boutons/fermer.gif' onclick='cache_actu();' class='boutferme' />" 
      +"<table cellspacing='0' class='tableauactu'>"
      +"<tr>"
      +"<td id='celluleactu'>"
      +"<iframe marginheight='0' frameborder='0' marginwidth='0' src='actu_rfe.htm' width='330' height='475' allowtransparency='true' "
      +"scrolling='no' align='middle'></iframe>"
      +"<div style='line-height: 3px'><br /></div>"
      +"<div style='line-height: 17px'>"
      +"<a href='artistes.htm' target='principal' class='lienactu' onclick='cache_actu();'>En savoir plus cliquez ici...</a></div>"
      +"<div style='line-height: 5px'><br /></div></td>"
      +"</tr>"
      +"</table>";
    document.getElementById("object1").innerHTML=desc;
	document.getElementById("object1").style.visibility='visible';
}
function cache_actu(){
document.getElementById("object1").innerHTML="";
document.getElementById("object1").style.visibility='hidden';
}

