var alerted_already;
var remark;
function theytyped(form) {
for (   j = 1;
j<=remark.length && remark[j]!=form.myoutxt.value;
j++){}
if (j>remark.length)
form.myoutxt.value = "Do not type here!";
return false;
}
function touched_frog() {
if (!alerted_already) {
alert(""+ 
                      ""+
                      ""+
                      ""+
                      ""+
                      "");
                alerted_already = true;
}
return alerted_already;
}
function compute(form) {
for (var i = 1; 
i<=remark.length && remark[i]!=form.myoutxt.value ;
i++){}
if (i==remark.length)
history.back();
if (i==remark.length-1)         
alert(
"Ok, ok I know that I really suck and I'm dangerous to your data." +
"\nI'll wreck it every chance that I get just to drive you nuts." +
"\nYou haven't seen anything yet." +
"\nThis is just the beginning of your nightmare.");
if (i<remark.length)
form.myoutxt.value = remark[i+1];
else 
form.myoutxt.value = remark[1];
}
function initArray() {
      this.length = initArray.arguments.length;
      for (var i = 0; i < this.length; i++)
        this[i+1] = initArray.arguments[i];
}
remark = new initArray( "Usually when you click on me, you get a virus.",
                        "Or Spyware, or a Pop-up, Malware, you get the point.",
                        "After all of these years, suckers are still clicking me.", 
                        "This is because I'm a child of Microsoft.", 
                        "A spoiled rotten child that can do what he wants.", 
                        "I'm never ever going to go away.", 
                        "Oh ya, you can get a new computer, but I'll still be there.", 
                        "Admit it, you need me.", 
                        "Without me, you don't even know how to get on the Internet.", 
                        "So go ahead and keep clicking.", 
                        "Hee hee he, I'm the Big Blue E.");
												
alerted_already = false;
