
function myscroll(seed)
{
var box="visit.edinburgh-scotland.biz was setup in reply to the tactics used by the group that took over from the Scottish Tourist Board. Here i have tried to give a free link to every accommodation provider in Edinburgh";
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);
}
}
}
