var milisec=0 
 var seconds=5
 var seq=0 
 //document.counter.d2.value='10' 
document.getElementById("mytime").value='10';
// alert(document.getElementById("mytime").value);
 
function display(){ 

 var myCars=new Array(); // regular array (add an optional integer
myCars[0]="I want to congratulate Corporate IT for doing a fantastic job of the onsite registration at Gastech 2008. The management team was super organized and clearly did a very good job of briefing the temporary staff..\" <br><br> - <i>Jessy</i> <br><br><br>"; 

myCars[1]="Thank you for the cd of shots and the opportunity to see the pictures of the room when it was at its most beautiful ever - it was quite transformed, I will never forget how wonderful you and your team made our Warwick Suite look \"<br><br> -<i>David Moher</i> <br><Br>";

myCars[2]="The performers and decorations were all fabulous - thank you so much for all your help......<br>I'll be in touch again soon \"<br><br> -<i>Sherene<i><br><br><br><br><br>";

 if (milisec<=0){ 
    milisec=9 
    seconds-=1 
 } 
 if (seconds<=-1){ 
    milisec=0 
    seconds+=1 
 } 
 else 
    milisec-=1 
    document.getElementById("mytime").value=seconds+"."+milisec 
    setTimeout("display()",100) 
	if(document.getElementById("mytime").value==0){
		if(seq==0){
		//alert(myCars[0]);
		document.getElementById('faifaifai').innerHTML = myCars[0];
		seconds=5;
		seq=1;
		}else if(seq==1){
		//alert(myCars[1]);
		document.getElementById('faifaifai').innerHTML = myCars[1];
		seconds=5;
		seq=2;
		}else if(seq==2){
		//alert(myCars[2]);
		document.getElementById('faifaifai').innerHTML = myCars[2];
		seconds=5;
		seq=0;
		}

	}
} 

