Se l'errore si riferisci a questa parte di codice:
codice:
<script type='text/javascript'>
var sub = document.getElementById('submit');
sub.parentNode.removeChild(sub);
document.getElementById('recaptcha-submit-btn-area').appendChild (sub);
document.getElementById('submit').tabIndex = 6;
if ( typeof _recaptcha_wordpress_savedcomment != 'undefined') {
document.getElementById('comment').value = _recaptcha_wordpress_savedcomment;
}
document.getElementById('recaptcha_table').style.direction = 'ltr';
</script>
<noscript>
<style type='text/css'>#submit {display:none;}</style>
<input name="submit" type="submit" id="submit-alt" tabindex="6" value="Submit Comment"/>
</noscript>
l'errore l'hai anche con firefox 4.0 e se sub si riverisce al tasto submit sottostante da l'errore e dato per due motivi:
A) Il tasto a un altro ID
B) Il tasto si trova all'interno dei tag noscript pertanto non raggiungibile (inesistente) da javascript.