document.writeln('<textarea id="txt00_id" name="txt00" readonly style="width:150px;height:100px;background-color:#cccccc;color:#000099;border: 1px solid #000000;font-family:Arial;font-size:10"></textarea>' + '<BR>');

var t=250,restart=0;
var dt=t*0.5;
var s="jason wells' for algernon, "both great *and* consistent, putting out fantastic records every year or so for the last decade, while playing solo *and* in different bands. i can't think of anyone else who has FIVE records that i'd consider some of cincy's best.." Michael Bond - DataWasLost Records";
var i=0;
function isNetscape()
{
        return "Netscape"==navigator.appName;
}
function DoIt()
{
        if (!i)
           document.getElementById("txt00_id").value="";
        document.getElementById("txt00_id").value+=s.charAt(i++);
        if (!isNetscape())
           document.getElementById("txt00_id").doScroll("pageDown");
        if (i<s.length)
        {
                r=Math.random();
                if (r<=0.3)
                        r=1;
                else if (r<=0.6)
                        r=-1
                else
                        r=0;
                setTimeout(DoIt,Math.round(t+dt*r));
                return;
        }
        if (restart)
        {
                i=0;
                setTimeout(DoIt,restart);
        }
}
setTimeout(DoIt,restart);
