function chk_mensaje(form) {
	var o=form.asunto;
	if (o!=null) {
		if (o.value=="") {alert("Escribe el titulo del post por favor");o.focus();return false;}
	}
	if (form.mensaje.value=="") {alert("Escribe el mensaje por favor");form.mensaje.focus();return false;}
	return true;
}

function mostrar(id_msg) {
	objspan=getObj("span_msg"+id_msg);
	str_msg=eval("txt_msg"+id_msg);

	if (objspan.innerHTML=="") {;
		objspan.innerHTML=str_msg;
	} else {
		objspan.innerHTML="";
	}
}

