function ErrorProcessor(){
this.messageArray = new Array();
this.messageArray[0] = "A number needs to be entered into this textbox";
this.messageArray[1] = "You need to add a score into each side of the fixture list \n in order to see the results appear in the table on the left.";
}
ErrorProcessor.prototype.print = function(i){
alert(this.messageArray[i])
}
ErrorProcessor.prototype.disallowKeyEntry = function(formItem){
if(formItem.name.charAt(0)=="i"){var formName="inputForm"}else{var formName="outputForm"}
formItem.value = document[formName][formItem.name+'mirror'].value
}
