Group,
any particular reason why this wil not work.
<
document.write
}
Please help.
I'm not sure why you're posting a JavaScript question here, but try this instead:
<html><head><script type="text/javascript">function load(){document.write("<br /><br />Redirecting");for(i=0;i<5000;i++){if(i % 1000==0){document.write(".");}}}</script></head>
<body onload="load()"></body>
</html>