// JavaScript Document
function scroll(speed)
       {
       position++;
       var output = "";
       if (position == text.length) position = -(size + 2);
       if (position < 0)
       {
       for (i = 1; i <= Math.abs(position); i++) output = output + " ";
       output = output + text.substring(0,size - i + 1);
       }
       else
       {
       output = output + text.substring(position, size+position);
       }
       window.status = output;
       setTimeout("scroll(" +speed+ ")",speed);
       }
       var text = "Flowers and what they mean ************ Say it with Flowers from Almond Blossom ********** Flowers and what they mean - Say it with Flowers from Almond Blossom";
       var size = 100;
       var position = -(size + 2);
       scroll(175);
       // -->