/*

#######################################################################

#

#   Author:             Virginia Truong

#

#   Date:               Nov 20, 2001

#

#######################################################################*/





myMsg = " Welcome to Regina Pacis Home Sweet Home. This lovely home dedicated to our Regina Pacis family around the world.  Our main page and Themesong page is specially played our Regina Pacis themsesong (remade by Linh Chi).";



i = 0;



function scrollMe() {

   

   window.status = myMsg.substring(i,myMsg.length) + myMsg.substring(0,i-1)    

   

   if (i < myMsg.length) {

       i++

   }

   else {

         i = 0

   }

   setTimeout("scrollMe()", 200)   

}



