var taille=0;
window.setTimeout("Scroll();",1);

function Scroll() {
         if (!document.getElementById) return;
         if (!(obj=document.getElementById("thewindow"))) return;
         taille+=2;
         if (taille>180) return;
         obj.style.height=taille;
         obj.style.width=1.5*taille;
         obj.style.left=(document.documentElement.scrollWidth-(1.5*taille))/2;
         obj.style.top=(document.documentElement.scrollHeight-taille)/2;
         
         obj=document.getElementById("thetext");
         obj.style.top=taille/2-90;
         obj.style.left=(1.5*taille)/2-135;
         window.setTimeout("Scroll();",4);
}

function FermerRappel() {
         if (!document.getElementById) return;
         obj=document.getElementById("thewindow");
         obj.style.visibility="hidden";
         
         
}

