function submitform(clave_hash,clave_random,clave_id,formulario)
{
  var el = document.getElementById(formulario);
  
  var comment_post_ID_hash = document.createElement('INPUT');
  comment_post_ID_hash.setAttribute('type','hidden');
  comment_post_ID_hash.setAttribute('name','comment_post_ID_hash');
  comment_post_ID_hash.setAttribute('value',clave_hash);
  
  var comment_post_ID_random = document.createElement('INPUT');
  comment_post_ID_random.setAttribute('type','hidden');
  comment_post_ID_random.setAttribute('name','comment_post_ID_random');
  comment_post_ID_random.setAttribute('value',clave_random);
  
  var comment_post_ID = document.createElement('INPUT');
  comment_post_ID.setAttribute('type','hidden');
  comment_post_ID.setAttribute('name','comment_post_ID');
  comment_post_ID.setAttribute('value',clave_id);
  
  el.appendChild(comment_post_ID_hash);
  el.appendChild(comment_post_ID_random);
  el.appendChild(comment_post_ID);
  el.submit();
}
