On the blog-level settings, you have the option of installing the Comment Spam JavaScript template that ships with MT-Approval. You do not have to use this option, and you can install it manually by cutting and pasting this text:
function getByID(n, d) {
if (!d) d = document;
if (d.getElementById)
return d.getElementById(n);
else if (d.all)
return d.all[n];
}
function setDate (id) {
var f = getByID(id);
f.value = new Date().getTime()/1000.0;
return true;
}
// set comment form action
document.comments_form.action = "<$MTCGIPath$><$MTCommentScript$>";
After installing the template - either via the link or by cutting and pasting, make sure that you set the template name by choosing from the drop-down menu. It doesn't matter what you call it - so long as you choose the name from the list and save your settings (this is the JavaScript Template). This allows the plugin to fill in that informaion correctly. If this is not correct, the rest of the plugin will not work and you may not be able to receive comments at all!
Once you have installed the Comment Spam JavaScript template, you need to create another template that will provide a message to users who do not have JavaScript installed. A good starting point for this is likely the Comment Response template, but you can make it anything you like. The contents should be something like:
You are seeing this error because your browser does not support JavaScript, or because JavaScript is not currently enabled. If your browser supports JavaScript, simply turn it back on and you will be able to comment normally. We are sorry for any inconvenience this may cause.
This should go into an index template, and once saved, you should also select this template from the drop-down list (this is the Message Template). Unlike with the JavaScript Template, if you choose the wrong name here, it won't break anything, but someone who would like to leave a comment - and who should be able to - and gets the wrong template - may not be able to figure out the problem. So you should try and set it correctly.
At this point, the plugin settings are complete, and you are ready to proceed with adding the necessary tags into your templates. Head to the manual to make everything work.