Code
<script type="text/javascript">
(function () {
var but = document.getElementById( 'addcBut' ),
t = document.createElement( 'INPUT' ),
lim = 100;
t.type = 'button',
t.value = '- Добавить комментарий -',
t.onclick = function () {
if ( document.getElementById( 'message' ).value.length > lim ) {
but.click();
} else {
alert( 'Минимум ' + lim + ' символов' );
}
},
but.style.display = 'none';
but.parentNode.insertBefore( t, but.nextSibling );
})();
</script>
В конец BODY.