<!--
var words = new Array("Don't let Krusty's death get you down, boy. People die all the time, just like that. Why, you could wake up dead tomorrow! Well, good night. \n \nHomer J Simpson", "If cartoons were meant for adults, they'd put them on in prime time. \n \nLisa Simpson", "We should be safe up here. I'm pretty sure fires can't climb trees. \n \nBart Simpson", "Hey...That's not the wallet inspector... \n \nHomer J Simpson", "On Nelson: He's not like anybody I've ever met. He's like a riddle wrapped in an enigma wrapped in a vest. \n \nLisa Simpson", "Im not really about gum, but i like the whole chewing thing. \n \nBart Simpson", "English, who needs that? I'm never going to England. \n \nHomer J Simpson", "You can't create a monster, then whine when it stomps on a few buildings \n \nLisa Simpson", "Is it just me, or are you guys getting tired of crazy adventures? \n \nBart Simpson", "You can't send me to prison! They pee in a cup and throw it on you! I saw it in a movie! \n \nHomer J Simpson", "Remember, you can always find East by staring directly at the sun. \n \nBart Simpson", "I take a whiskey drink! I take a chocolate drink! And when I have to pee, I use the kitchen sink!! \n \nHomer J Simpson (singing to the chumbawumba song)", "I didn't do it, no one saw me do it, there's no way you can prove anything! \n \nBart Simpson", "And how is education supposed to make me feel smarter? Besides every time I learn something new, it pushes some old stuff out of my brain. Remember when I took that home winemaking course, and I forgot how to drive? \n \nHomer J Simpson", "I've said it before, and I'll say it again...aye carumba! \n \nBart Simpson", "Romance is dead - it was acquired in a hostile takeover by Hallmark and Disney, homogenized, and sold off piece by piece. \n \nLisa Simpson", "Donuts. Is there anything they can't do? \n \nHomer J Simpson", "There's no such thing as a soul. It's just something they made up to scare kids, like the boogeyman or Michael Jackson. \n \nBart Simpson", "Oh no, the dead have risen and they're voting Republican. \n \nLisa Simpson", "Don't mess with the dead boy they have eerie powers. \n \nHomer J Simpson", "Science has already proven the dangers of smoking, alcohol, and Chinese food, but I can still ruin soft drinks for everyone! \n \nLisa Simpson", "I am so smart, I am so smart, s-m-r-t....I mean s-m-A-r-t. \n \nHomer J Simpson", "Inside every hardened criminal beats the heart of a ten-year-old boy. \n \nBart Simpson", "Dad, is it all right to take things from people you don't like? \n \nLisa Simpson", "Ha ha! Look at this country! ? R U Gay!? Ha ha! \n \nHomer J Simpson (While looking at Uruguay on the globe)", "You know, I've done a lot of bad stuff through the years. I guess now I'm paying the price. But there's so many things I'll never get a chance to do: smoke a cigarette, use a fake ID, shave a swear word in my hair. \n \nBart Simpson", "Solitude never hurt anyone. Emily Dickinson lived alone, and she wrote some of the most beautiful poetry the world has ever known... then went crazy as a loon. \n \nLisa Simpson", "It's like something out of that twilighty show about that zone. \n \nHomer J Simpson", "I think its ironic that for once dad's butt prevented the release of toxic gas. \n \nBart Simpson", "Relax? I can't relax! Nor can I yield, relent, or... Only two synonyms? Oh my! I'm losing my perspicacity! Aaaaa! \n \nLisa Simpson", "OH!!! THEY HAVE THE INTERNET ON COMPUTERS NOW!!? \n \nHomer J Simpson", "Why would anyone want to hurt me? I'm this century's Dennis the Menace! \n \nBart Simpson", "I can't stand to see you so upset, Lis, unless it's from a rubber spider down your dress - Hmm, that gives me an idea note for later: put rubber spider down Lisa's dress. \n \nBart Simpson", "Milhouse, knock him down if he's in your way! Jimbo, Jimbo, go for the face! Ralph Wiggum lost his shin guard! Hack the bone! Hack the bone! \n \nLisa Simpson (Lisa in goal for hockey team)", "I don't know! I don't know why I did it, I don't know why I enjoyed it, and I don't know why I'll do it again! \n \nBart Simpson", "What if you're a really good person, but you get into a really, really bad fight and your leg gets gangrene and it has to be amputated. Will it be waiting for you in heaven? \n \nBart Simpson");


var maxv = words.length;
var startnum=parseInt(eval(Math.random()*maxv));
var num=startnum;

var x=200


 // var time = new Array("2000", "1000", "150", "150", "150", "150", "150", "150", "150", "150", //"150", "150", "150", "150", "150", "150", "150", "150", "150", "150", "150", "150", "150", "150", //"150", "150", "2000", "1000")

var time = "20000"; //20000

function bob(form) {
document.box1.box2.value=words[num];
timerID=setTimeout("bob1()",time);
}

function bob1() {
num++
if (num == maxv) {
num = 0
}
bob()
}

// -->