// global variabes

var MESSAGE = "           www.europeu.com   > > >   Vermelho para «tackles» violentos / Defender a arbitragem portuguesa (Notícias), Informação sobre todas as equipas do Euro2000 (Grupos), Datas de todos os Jogos e respectivos Estádios (Calendário)    < < <                "

var SPEED   = 10;

var id,pause=0,position=0;

function bannner() {

// variables declaration

var i,k,msg=MESSAGE; /*document.form1.message.value*/;

// increase msg

k=(66/msg.length)+1;

for(i=0;i<=k;i++) msg+=" "+msg;

// show it to the window

document.form2.bannner.value=msg.substring(position,position+70);

// show it to the status bar

//window.status=msg.substring(position,position+66);

// set new position

if(position++==msg.length /*document.form1.message.value.length*/) position=0;// repeat at entered speed 

id=setTimeout("bannner()",1000/SPEED); }

function action() {

// stop rolling

if(!pause) {

clearTimeout(id);

pause=1; }

// continue rolling

else {

bannner();

pause=0; } 

}
