
function comentario_expandir (id) {
  document.getElementById('ComentarioContraido'+id).style.display = 'none';
  document.getElementById('ComentarioExpandido'+id).style.display = 'block';
}

function comentario_contraer (id) {
  document.getElementById('ComentarioContraido'+id).style.display = 'block';
  document.getElementById('ComentarioExpandido'+id).style.display = 'none';
}
function comprobar_campos (form) {
  if (!form.titulo.value.match(/\w+/)) {
    alert('Por favor, ponga un título a su comentario');
    return false;
  }
  if (!form.comentario.value.match(/\w+/)) {
    alert('Por favor, escriba algún comentario');
    return false;
  }
  return true;
}