Resulta que esta funcion anda barbaro en IE, pero en FIREFOX no funciona el evento de activar la caja de texto.
aca les paso la funcion, donde a es el nombre del checkbox y b es el nombre del textbox a activar
Código PHP:
   function activar(a,b) {//activa los textbox//
 
 
var checkbox = document.getElementByName(a); 
var textbox = document.getElementByName(b); 
 
    if (checkbox.checked == true) { 
        textbox.disabled = false; 
        textbox.style.backgroundColor = "#ffffff";
        //alert('Por favor ingrese la cantidad que desea adquirir');
        textbox.focus();
    } else { 
        textbox.disabled = true;
        textbox.value = "";  
        textbox.style.backgroundColor = "#FF99CC";
    } 
} 
    
 
 
 ]...)
 
