
function myscroll(seed)
{
var box="Sherwood Guest House is part of a Georgian terrace built in 1832 - upgraded to a 3 star establishment which is within easy walking distance of many fine restaurants, bars, theatres and all the major tourist attractions - come visit us soon";
var out = " ";
var c = 1;
if (seed > 100)
{
seed--;
var cmd="myscroll(" + seed + ")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0)
{
for (c=0 ; c < seed ; c++)
{
out+=" ";
}
out+=box;
seed--;
var cmd="myscroll(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0)
{
if (-seed < box.length)
{
out+=box.substring(-seed,box.length);
seed--;
var cmd="myscroll(" + seed + ")";
window.status=out;
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("myscroll(100)",75);
}
}
}
