var loaded  = false;
var width   = text.length;
text        = text + text + text + text;
var timeout = null;
var pos     = 0;

window.status = text;
window.onload = function() { Scroll(); preloadImages(); }

function info()
{
    window.open("info.html", "info", "toolbar=no, location=no, directories=no, status=yes, scrollbars=yes, resizable=yes, copyhistory=no, width=550, height=400, left=300, top=50");
}

function preloadImages()
{
    tmpbouton = new Image(0, 0);
    tmpbouton.src = 'img/bouton_taxi_flying.png';
    loaded = true;
}

function Scroll()
{
    pos++;
    if (pos>width) pos = 0;
    window.status = text.substring(pos, text.length);
    timeout = setTimeout("Scroll()", 200);
}

