<!-- Hide the script from old browsers --function MakeArray(n){	this.length=n;	for(var i=1; i<=n; i++) this[i]=i-1;	return this}hex=new MakeArray(16);hex[11]="A"; hex[12]="B"; hex[13]="C"; hex[14]="D"; hex[15]="E"; hex[16]="F";function ToHex(x){ // Changes a int to hex (in the range 0 to 255)	var high=x/16;	var s=high+""; //1	s=s.substring(0,2); //2 the combination of these are the same as the trunc function	high=parseInt(s,10); //3	var left=hex[high+1]; // left part of the hex-value	var low=x-high*16; // calculate the rest of the values	s=low+""; //1	s=s.substring(0,2); //2 the combination of these are the same as the trunc function	low=parseInt(s,10); //3	var right=hex[low+1]; // right part of the hex-value	var string=left+""+right; // add the high and low together	return string;	}function fadein(text){	text=text.substring(3,text.length-4); // gets rid of the HTML-comment-tags	color_d1=255; // any value in 'begin' 0 to 255	mul=color_d1/text.length;	for(i=0;i<text.length;i++){		color_d1=255*Math.sin(i/(text.length/3)); // some other things you can try>> "=255-mul*i" to fade out, "=mul*i" to fade in, or try "255*Math.sin(i/(text.length/3))"		color_h1=ToHex(color_d1);		color_d2=mul*i;		color_h2=ToHex(color_d2);	document.write("<FONT COLOR='#FF"+color_h1+color_h2+"'>"+text.substring(i,i+1)+'</FONT>');	}}// --End Hiding Here --><!-- //function stat(txt) {	window.status = txt;	setTimeout("erase()", 5000);	}function erase () {	window.status = "";	}var i = 0;var TextNumber = 0;var TextInput = new Object();var HelpText = "";var Text = "";var Speed = 106var WaitSpace = " "TextInput[0] = " ......Du soleil.... "TextInput[1] = " ......du vent... "TextInput[2] = " ......de l'eau turquoise..."TextInput[3] = " ..c'est avec ALIZE FUN DILLON..."TotalTextInput = 3;for(var j = 0; j < TotalTextInput; j++) {	TextInput[j] += WaitSpace	}var TimerIdvar TimerSet = false;function startBanner() {	TimerSet = !TimerSet	if(TimerSet)		banner();	else		kill();}function banner() {	Text = rollMessage();	TimerId = setTimeout("banner()", Speed)	document.IMAWin.TextArea.value = Text;}function rollMessage() {	Wait_yn = false;	i++;	var CheckSpace = HelpText.substring(i-1, i);	CheckSpace = "" + CheckSpace;	if(CheckSpace == " ") { i++; }	if(i >= HelpText.length+1) {	i = 0;	if (TextNumber < TotalTextInput) {		TextNumber++;		} 	else {		TextNumber = 0;		}	init();	}Text = HelpText.substring(0, i);return (Text);}function init() {	Text = TextInput[TextNumber]	HelpText = Text;}function kill() {	clearTimeout(TimerId)	}// -->
