Bueno, el prolema estaba en dos parte:
1)en html agregar un Id. que perita identificarlo
<input type="text" name="<?php echo 'txt'.$n ?>" disabled id="<?php echo 'txt'.$n ?>">
2)en la funcion Js. Faltaba:
function rechazar(ott)
{
//alert ("entro");
with (document)
{
//alert ("entro ");
getElementById(ott).disabled=false;
getElementById(ott).focus();
}
}
Todo esto gracias a la gentil ayuda de NOSTROMO