<!-- Begin

                         var scrollCounter = 0;

                         var scrollText    = " ***  Welcome to Asia Pacific Superyachts - Servicing Superyachts throughout Asia since 1992 ***                                                                                       *** Superyacht agents, yacht charters, bunkering and crew agency for the asia pacific and southeast asia regions    ***                                                                                       *** Visit our offices in Andamans, Bali, Borneo, Burma, Hong Kong, India, Indonesia, Malaysia, Maldives, Myanmar, Seychelles, Singapore, Sri Lanka and Thailand *** ";

                         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 -->

