var timerID = null;
var timerRunning = false;
var id,pause=0,position=0;

function ticker()
{
var i,k;
var m1  = "                You're getting sleepy...  Sleepy..  You can hardly";
var m2  = " keep your eyes open..  So tired!  Your eyes are closing. ";
var m3  = "You are now in a trance.  When you wake up, you will ";
var m4  = "remember nothing but the commands I give you . . .";
var m5  = "You want to download the FreeBSD installation disks ";
var m6  = "from ftp.freebsd.org.  You want to boot from these ";
var m7  = "disks and replace your Windows partition with a FreeBSD ";
var m8  = "partition.  FreeBSD good...  Windows Bad...  You want to ";
var m9  = "install FreeBSD over the Windows partition... ";
var m10  = "Do it now...  You will now awaken and reboot... ";
var msg = m1 + m2 + m3 + m4 + m5 + m6 + m7 + m8 + m9 + m10;

k=(75/msg.length)+1;
for(i=0;i<=k;i++) msg+="     "+msg;
document.lichtkrant1.veld1.value=
msg.substring(position,position+95);
if(position++==msg.length) position=0;
id=setTimeout("ticker()",1500/10);
}

function bladiebla()
{
document.write('<DIV ALIGN="center">');
document.write('<FORM NAME="lichtkrant1">');
document.write('<INPUT TYPE="text" NAME="veld1" SIZE="50" border=0 style="font-size:18px;color:silver;background-color:black;border-color:black">');
document.write('<\/FORM>');
document.write('<\/DIV>');
ticker();
}

