function scrollit_r2l(seed)
{
var msg="Mir i Dobro - Via Giovane Italia, 3 - 21059 Viggiù (VA) - Tel. 0332/487.613 - Fax. 0332/485.025 - CONTI CORRENTI: CC 113001/38, MIR I DOBRO c/o Banca Intesa, Arcisate (VA) 'ABI 03069 CAB 49990' - CC 380 MIR I DOBRO, Istituto San Paolo di Torino Agenzia Viggiù 'ABI 1025 CAB 50660 - CC postale 10073211, MIR I DOBRO Viggiù (VA)";
var out = "";
var c   = 1;
if (seed > 150) {
seed--;
var cmd="scrollit_r2l(" + seed + ")";
timerTwo=window.setTimeout(cmd,150);
}
else if (seed <= 150 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
var cmd="scrollit_r2l(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,150);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
var cmd="scrollit_r2l(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,150);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit_r2l(150)",75);
}
}
}
scrollit_r2l(150)