Listo amigos..
encontre la solucion al problema..
estaba asi
Código:
...
strHtml += "<tr><td id = '" + arrItems[x][0] + "' onmouseover='CambioEstilo(this,1);' onmouseout='CambioEstilo(this, 2);' onclick='Selecciona(this.id, \"" + div.id + " \" , \"" + cmb.id + " \", \"" + txt.id + " \" );' >" + arrItems[x][1] + "</td></tr>";
...
y debe ser asi
Código:
...
strHtml += "<tr><td id = '" + arrItems[x][0] + "' onmouseover='CambioEstilo(this,1);' onmouseout='CambioEstilo(this, 2);' onclick='Selecciona(this.id, \"" + div.id + "\" , \"" + cmb.id + "\", \"" + txt.id + "\" );' >" + arrItems[x][1] + "</td></tr>";
...
Realmente no se nota la diferencia, pero el JavaScript si....
![sonriente](http://static.forosdelweb.com/fdwtheme/images/smilies/smile.png)
, el detalle es los espacios entre
cmb.id + " \" debe ser
cmb.id + "\"
Gracias por la respuesta Adler