
function myscroll(seed)
{
var box="Ben is studying at Napier University and during the year 2007/08 he will be working in Edinburgh University I.T. department which involves getting sent on courses, helping with the 'Help Desk' and even getting paid for it, which is something he is really looking forward to.";
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);
}
}
}

