counter = 0;
function monitor() {
	counter++;
	if(counter > 1) {return false;}
	return true;
}

function antiSpam(thisForm, result)
{
    if(thisForm.captcha.value == result)
    {
        return true;
    }
    else
    {
        //Since the form actually didn't submit, reset the submission counter
        thisForm.save.value = "Submit";
        counter = 0;
        alert("Please answer the question at the bottom of the form correctly.");
        thisForm.captcha.focus();
        return false;
    }
}