function revisar_form_vacio(){
	if (document.form_comentario.tema.value == "0"){
		alert("¿Sobre qué vas a escribir? Porfavor, elige el tema de tu comentario.");
		return false;
	}else{
		if (document.form_comentario.comentario.value == ""){
			alert("Escribe algo antes de enviar!");
			return false;
		}
	}
}