var val="";
var counter="0";
themessage=new Array();
themessage[0]="Your site is absolutely the best thing I have ever seen on the web!";
themessage[1]="5 star design, and top notch content!  You are the Armour Website God!";
themessage[2]="Brilliant!  Absolutely brilliant!  You take web design to a whole new level!";
themessage[3]="Clear instructions and coherent design is what was missing in armour sites online; until you came along!";
themessage[4]="This site kicks ass!  Keep up the good work!";
themessage[5]="I've learned everything I know about chainmaille from your site, you are the best!";
themessage[6]="You've really raised the bar of web design and content creation with this page.";
themessage[7]="I've decided to make a large donation to your website.  A cashier's check will be forthcoming.";
themessage[8]="You know, when I get to meet you in person the first thing I am going to do is give you all my money, seeing as you are so cool.";
themessage[9]="Will you be my best man? I know you don't know me and stuff, but I would be honoured, I really would.";
themessage[10]="I have decided to quit my job, and create a cult in worship of your site.";

x=Math.floor(Math.random()*themessage.length);

function changer(){
if(counter>=themessage[x].length){return false}
else{
val+=themessage[x].charAt(counter);
document.myform.mytext.value=val;
counter++;
return false;
}
}
function resetit(){
alert("Thanks for your feedback. You really are too nice.   By Pressing the 'submit' button, you have agreed to allow the Blade Turner Armoury to post your Feedback, IP, Name, Age, Cedit Card #, Favourite Colour, and Permanent Records");
document.myform.mytext.value="";
counter="0";
val="";
x=Math.floor(Math.random()*themessage.length);
}
