function ReemplazarTerminosGlosarioIN_GESCONTENIDOS(capa) { var texto=document.getElementById(capa).innerHTML; texto = texto.replace(/Juan José Celaya/gi,'Juan José Celaya'); texto = texto.replace(/Emiliano Eizaguirre/gi,'Emiliano Eizaguirre'); texto = texto.replace(/Luis Ayestarán/gi,'Luis Ayestarán'); document.getElementById(capa).innerHTML=texto; }