Update 8.0.4 - Captcha Reload and Typo Fix
Here's the code to replace on template_permalink.asp:
Replace:
<p><img src='aspcaptcha.asp' alt='CAPTCHA' width='86' height='21' /><br />Write the characters in the image above<br /><input name='strCAPTCHA' type='text' id='strCAPTCHA' maxlength='8' /></p>
With:
<script type="text/javascript">
function reloadCAPTCHA() {
document.getElementById('CAPTCHA').src='aspcaptcha.asp?'+Date();
}
</script>
<p><img id="CAPTCHA" src='aspcaptcha.asp'
alt='CAPTCHA' width='86' height='21' />
<a href="javascript:reloadCAPTCHA();">Reload</a>
<br />Write the characters in the image above<br />
<input name='strCAPTCHA' type='text'
id='strCAPTCHA' maxlength='8' /></p>