﻿function ComprobarCamposObligatorios()
{
    var txtNombre = document.getElementById('ctl00_ContenidoCentral_txtNombre');
    
    if (txtNombre.value == '')
    {
        alert('Indique su nombre');
        return false;
    }
}