пытался сделать таким образом но не IE и FF не работает:
<script
type="text/javascript">
function importXML(){ if (document.implementation && document.implementatio
n.createDocument){ xmlDoc = document.implem
entation.createDocument("", "", null);xmlDoc.onload = createTable;} else if (window.ActiveXObject){ xmlDoc = new ActiveXObjec
t("Microsoft.XMLDOM");
xmlDoc.onreadystatechange= function () {if (xmlDoc.readyState == 4) createTable()};}
else{ alert('Your browser can\'t
handle this script');
return;
} xmlDoc.load("tt.xml");} function createTable(){
localh = xmlDoc.getElementsByTagName("localhost");
exc = xmlDoc.getAttribute("exception");
LName = xmlDoc.getAttribute("name");
Lind = xmlDoc.getAttribute("ind");
content='<span id="'+Lind+'" class="" height="48" width="48"><img src="./'+exc+'.png" height="32" width="32" class="" alt=""/><span>'+LName+'</span></span>';
document.all.writeroot.innerHTML=content;}
</script>
в чем проблема?