
var str = prompt("Ho! Ho! Ho! Hi Kids. If you would like me to check to see if your name is on the GOOD KIDS List? Please enter your name:", "")

<!-- Beginning of JavaScript Applet -------------------

function scrollmsg(seed)
{
        
        var m1  = (" Henry C.,  "+ str+".,  Robert L.,  Ron G.,  Denise G.,   Paul K.,  Simon G.,  Stevie D.,  Marvin J.,"); 
        var m2  = " Frank K.,  Lois K.,  Hansel G.,  Greg S.,  Brian D.,  Julio W.,  Oscar D.,  Paula S.,  Tom W.,  Barry E.,   Dionne S.,  Monica F.,";
        var m3  = " Mitchel S.,  Jamie T.,  Patrick S.,  Gloria H.,  Selena D.,  Roberto F.,  Matthew P.,  Janis D.,  Brenda P.,  Deborah S.,  Shakira X.,";
        var m4  = (" Francisco M.,  Richie G.,  Lorie D.,  Kimberly G.,  Bill C.,  Neve C., "+ str+",  Barbara D.,  Mark W.,  Shania S.,");
        var msg=m1+m2+m3+m4;
        var out = "";
        var c   = 0;
        if (seed > 100) {
                seed--;
                var cmd="scrollmsg(" + seed + ")";
                timerTwo=window.setTimeout(cmd,110);
        }
        else if (seed <= 100 && seed > 0) {
                for (c=0 ; c < seed ; c++) {
                        out+=" ";
                }
                out+=msg;
                seed--;
                var cmd="scrollmsg(" + seed + ")";
                    document.display.box.value=out;
                timerTwo=window.setTimeout(cmd,110);
        }
        else if (seed <= 0) {
                if (-seed < msg.length) {
                        out+=msg.substring(-seed,msg.length);
                        seed--;
                        var cmd="scrollmsg(" + seed + ")";
                        document.display.box.value=out;
                        timerTwo=window.setTimeout(cmd,110);
                }
                else {
                        document.display.box.value=" ";
                        timerTwo=window.setTimeout("scrollmsg(15)",110);
                }
        }
}

// -- End of JavaScript code -------------- -->

