Código PHP:
function activar_ninguno(campo)
{
if (document.formulario.ninguno.checked == true))
{
document.formulario.proy_apoyo.disabled=true;
document.formulario.proy_soporte.disabled=true;
}
else
{
document.formulario.proy_apoyo.disabled=false;
document.formulario.proy_soporte.disabled=false;
}
}
Código PHP:
<input name="ninguno" type="checkbox" id="ninguno" value="SI" onclick="return activar_ninguno(this);"/>
y esto en los campos:
Código HTML:
<input name="proy_soporte" type="text" id="proy_soporte" size="90" /> <input name="proy_apoyo" type="text" id="proy_apoyo" size="70" />