La Solucion es:
PASO 1: FUNCION JAVASCRIPT
Código:
<script language="javascript" type="text/javascript">
function es_vacio()
{
if (document.getElementById('numeroenvio').value=="")
{
document.getElementById('sin_ventas').disabled=true;
document.getElementById('todo_vendido').disabled=true;
}
else {
document.getElementById('sin_ventas').disabled=false;
document.getElementById('todo_vendido').disabled=false;
}
}
</script>
PASO 2: INPUT
Código:
<input type="text" name="numeroenvio" id="numeroenvio" maxlength="5" size="30" onkeyup="es_vacio()"/>
PASO 3: BOTONES
Código:
<input type="submit" disabled="true" id="sin_ventas" name="sin_ventas" value="Sin Ventas" onclick="return sin_venta();"/>
<input type="submit" disabled="true" id="todo_vendido" name="todo_vendido" value="Todo Vendido" onclick="return todos_vendido();"/>
Gracias por vuestra colaboración.