///////////////////////////////////
//  Post Reply Bot Catcher v1.0  //
//    By Chocolate570 in 2006    //
//     Warning: Do Not Edit!     //
///////////////////////////////////
function go() {
obj=[];
obj[0]=["1","one"]
obj[1]=["2","two"]
obj[2]=["3","three"]
obj[3]=["4","four"]
obj[4]=["5","five"]
obj[5]=["6","six"]
obj[6]=["7","seven"]
obj[7]=["8","eight"]
obj[8]=["9","nine"]
obj[9]=["10","ten"]
var random=Math.floor(Math.random()*10); 
var randomsec=Math.floor(Math.random()*10); 
objword=obj[random][1]+" times "+obj[randomsec][1];
objans=obj[random][0]*obj[randomsec][0];
if(!(prompt("What is "+objword+"?","Answer in Numbers")==objans)) {
return false;
}
}
if(document.REPLIER.setAttribute("onsubmit","return go()")) {
document.REPLIER.setAttribute("onsubmit","return go()");
}
else {
  document.REPLIER.onsubmit=function () {
    return go();
   }
}