﻿function makeArray(n)    

{    

  this.length = n;    



  for (i=0; i<n; i++) this[i]="";    
}    

 
str = "Welcome to Hoi Quan Hoi Ngo - Trinh Cong Son website ";


blnk = "      ";    

str += blnk;    
mcnt = 0;    
msg = "";    

stcnt=0;    

    
function wiper()    


{    
   stcnt++;    

   if (stcnt>3)    
      {    
        stcnt = 0;    
        msg += str.substring(mcnt,mcnt+1);    
        mcnt++;    

        if (mcnt >= str.length) { mcnt=0; msg=""; }    
      }    

  
    csr = " ";        
    if (stcnt & 1) csr ="_";    

    window.status = msg+csr;        

    timeID = window.setTimeout("wiper()",50);    
}    
    
wiper();



// -----------
