var commentform = document.getElementById('commentform');
if (commentform != null) {
  hidden_input = document.createElement('input');
  hidden_input.type  = 'hidden';
  hidden_input.name  = 'are_you_human_or_bot';
  hidden_input.value = 'HuMAN'; 
  commentform.appendChild(hidden_input);
}

