Thanks. I have it now, although I don't know why!!!
Code:
<HTML>
<head>
<title>
test
</title>
<script language="JavaScript">
var counter
function looper()
{
counter=Math.round(Math.random()*10)
alert("MICROSOFT SUCK! get out of this one billy!")
setTimeout("looper()",counter)
}
setTimeout("looper()",counter)
</script>
</head>
This seems to be an infinite loop. Removing either or both of the setTimeout lines renders the script useless. I have no idea why this works, but it does on my machine.
Any pointers???