<!-- Hide this script from old browsers --
/*
   This script came from the 24 hour JavaScripts Site
located at http://www.javascripts.com.  It is brought to 
  you by Eric Jarvies, Lewis Sellers, Giuseppe Lombardo, 
          Kurt Anderson, and David Medinets. 
*/
var id,pause=0,position=0;
function imascroller() {
        // variables declaration
        var i,k,msg="....STOP PRESS!!!  ROBIN 400-180 drops to Eu 126/hour until end September !!!.....   BRITISH JAR PPL.....     NO LANDING FEES!....    GET A BRITISH PPL IN 4 WEEKS..."      ;
       
        // increase msg
        k=(150/msg.length)+1;
        for(i=0;i<=k;i++) msg+=" "+msg;

        // show it to the window
        document.form2.imascroller.value=msg.substring(position,position+250);

        // set new position
        if(position++==250) position=0;

        // repeat at entered speed 
        id=setTimeout("imascroller()",100); }

// -- End Hiding Here -->
