That shouldn't make any difference. If you have a mozilla browser you can see what the exact error message is. If you have it, go to a thread and click quickquote, then click tools + web development + javascript console and it'll tell you the exact error.
What browser are you using btw? Also, are you using the hack instructions from the first post in this thread?
I can't think of anything that would cause a javascript error other than the form names not matching.
Just for the heck of it, try this:
In your quickquote template find this:
Code:
<A HREF="#vbform"><smallfont>QuickQuote</smallfont></A><input type="checkbox" onclick="document.vbform.message.value = document.vbform.message.value + document.p$post[postid].elements[0].value">
replace it with this:
Code:
<A HREF="#vbform"><smallfont>QuickQuote</smallfont></A><input type="checkbox" onclick="document.vbform.message.value = document.vbform.message.value + document.p$post[postid].message.value">