voila jai une balise mais lorsque je le met dans les template sa marche pas alors que faire pouvez vous maider peut etre faut le modifier voici la balise
<!-- DEBUT DU SCRIPT -->
<SCRIPT LANGUAGE="JavaScript">
/*
*/
width = 520;
height = 150;
winleft= Math.round((screen.width-width)/2);
popup = window.open('doom.jpg','coucou','toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=0,menuBar=0,width=' + width + ',height=' + height);
popup.moveTo(-570,100);
winpos = (-570);
function MoveMyPopup()
{
while(winpos < winleft) {
popup.moveBy(3,0);
winpos += 3;
}
}
window.onload=MoveMyPopup;
</SCRIPT>
<!-- FIN DU SCRIPT -->