Pessoal, Tenho um menu em uma div e uma outra div para jogar os conteúdos que estão todos em arquivos externos. Apenas um arquivo tem uma animação em flash, e esse não funciona, os outros que tem somente texto funcionam normalmente... O que pode ser? Segue abaixo o código do arquivo index.html e os arquivos com os scripts em ajax: index.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>::. HP Transportes - Transportando com inteligência .::</title> <script language="javascript" src="Scripts/ajax.js"></script> <script language="javascript" src="Scripts/instrucao.js"></script> <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script> <link href="css/estilo.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="tudo"> <div id="topo"><a href="http://www.hptrans.com.br"><img src="images/logoHP_1.png" width="1002" height="222" border="0" /></a></div> <div id="topo2"></div> <div id="menu" align="center"><a href="#" onclick="abrirPag('intro.html');"><img src="images/btnempresa.png" width="155" height="22" border="0" /></a> <a href="#" onclick="abrirPag('qualidade.html');"><img src="images/btnqualidade.png" width="155" height="22" border="0" /></a> <a href="#" onclick="abrirPag('servicos.html');"><img src="images/btnservicos.png" width="155" height="22" border="0" /></a> <a href="#" onclick="abrirPag('cases.html');"><img src="images/btncases.png" width="155" height="22" border="0" /></a> <a href="#" onclick="abrirPag('certificados.html');"><img src="images/btncertificados.png" width="155" height="22" border="0" /></a> <a href="#" onclick="abrirPag('contato.html');"><img src="images/btncontato.png" width="155" height="22" border="0" /></a></div> <div id="banner"></div> <div id="barra"><img src="images/barra.png" width="1002" height="15" /></div> <div align="center" class="copyright" id="copyright">Feito por <a href="http://www.blushweb.com.br" target="_blank">Blush<em>!</em> Web e Publicidade</a> - Hildo Paulino Transportes. Todos os direitos reservados</div> </div> </body> </html> instrucao.js function abrirPag(valor){ var url = valor; xmlRequest.onreadystatechange = mudancaEstado; xmlRequest.open("GET",url,true); xmlRequest.send(null); if (xmlRequest.readyState == 1) { document.getElementById("banner").innerHTML = "<img src='loader.gif'>"; } return url; } function mudancaEstado(){ if (xmlRequest.readyState == 4){ document.getElementById("banner").innerHTML = xmlRequest.responseText; } } ajax.js function GetXMLHttp() { if(navigator.appName == "Microsoft Internet Explorer") { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } else { xmlHttp = new XMLHttpRequest(); } return xmlHttp; } var xmlRequest = GetXMLHttp();