<!-- Begin

                         var scrollCounter = 0;

                         var scrollText    = " ***  Welcome to the Asia Superyacht Rendezvous - Phuket Thailand ***                                       *** The Asia Superyacht Rendezvous is an exclusive annual event held at THE CHEDI PHUKET on the 17th, 18th and 19th of December every year ***                                                                                       *** Visit our offices in Phuket, Thailand or call us today at +66 (0)76 296 440 *** ";

                         var scrollDelay   = 40;



                         var i = 0;

                         while (i ++ < 140)

                             scrollText = " " + scrollText;



                         function Scroller()

                         {

                             window.status = scrollText.substring(scrollCounter++,

                                                 scrollText.length);

                             if (scrollCounter == scrollText.length)

                                 scrollCounter = 0;
                             setTimeout("Scroller()", scrollDelay);

                         }



                         Scroller();
// End -->


