function FrontPage_Form1_Validator(theForm)
{

	if (theForm.categoria.value =="")
	{
	alert("El campo Categoria es obligatorio");
	theForm.categoria.focus();
	return (false);
	}
	if (theForm.titulo.value == "" || theForm.titulo.value == " " || theForm.titulo.value == "  " || theForm.titulo.value == "    ")
	{
	alert("El campo titulo es obligatorio");
	theForm.titulo.focus();
	return (false);
	}
 
}
  function Validar(Form)  {
    return (
       
          Validarcontenido(Form.contenido.value)
      );
   }

