<!--
var it=0
function initialize(){
mytext=typing.innerText
var myheight=typing.offsetHeight
typing.innerText=''
document.all.typing.style.height=myheight;	document.all.typing.style.visibility="visible";	typeit();
}
function typeit(){
typing.insertAdjacentText("beforeEnd",mytext.charAt(it))
if (it<mytext.length-1){it++; setTimeout("typeit()",20);}
else return;
}
function animeTxt(){
var highpos=5; var lowpos=530; var leftpos=1; var rightpos=70;
var diagonal=0	// diagonal
var looping=1	// boucle=1
bname=navigator.appName;
if (bname=="Netscape") {
if (document.ani1.top < lowpos) {document.ani1.top +=2;	if (diagonal) document.ani1.left+=2;}
else if (looping) {document.ani1.top=highpos; if (diagonal) document.ani1.left=leftpos;}}
else {if (ani1.style.pixelTop<lowpos) {ani1.style.pixelTop +=2; if (diagonal)	ani1.style.pixelLeft +=2;}	
else if (looping) { ani1.style.pixelTop=highpos; if (diagonal) ani1.style.pixelLeft=leftpos;}
}
setTimeout("animeTxt()",50);}
//-->
