m = new Array()
m[0] = "WelcomeŁĄ"
m[1] = "welcome to <a href='./'>TAT</a> !"
m[2] = "If you have any question,"
m[3] = "please don't hesitate to contact us!"
m[4] = "Our website: <a href='./'>http://www.technoasia.net</a>"
m[5] = "Email: linda@technoasia.net"
m[6] = "TEL: +86 755 86069476"
m[7] = "FAX: +86 755 86069472"

bagcolor = new Array()
bagcolor[0] = "#E5F2D9"
bagcolor[1] = "#D9F2F2"
bagcolor[2] = "#D9E5F2"
bagcolor[3] = "#F2D9F2"
bagcolor[4] = "#D9D9F2"
bagcolor[5] = "#F2D9D9"
bagcolor[6] = "#F2E5D9"
bagcolor[7] = "#F6F6F6"


function Ran(R) {		
  return Math.floor((R+1)*Math.random())
}

function play_rt(){	
 rt1.style.filter="revealTrans(Duration=1.5,Transition=" + Ran(22) + ")";
 rt1.filters.revealTrans.apply();
 rt1.style.background=bagcolor[Ran(7)];
 rt1.innerHTML=m[Ran(6)];
 rt1.filters.revealTrans.play();
 timer = setTimeout("play_rt()",3000);   
}

setTimeout("play_rt()",1000);