var xmlDoc=null;
if (window.ActiveXObject)
{// code for IE
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
}
else if (document.implementation.createDocument)
{// code for Mozilla, Firefox, Opera, etc.
xmlDoc=document.implementation.createDocument("","",null);
}
else
{
alert('Your browser cannot handle this script');
}

if (xmlDoc!=null)
{ 
xmlDoc.async=false;
// fichier xml lue
xmlDoc.load("accueil.xml");

document.write("<TABLE width=132 BORDER=0 align=center CELLPADDING=0 CELLSPACING=0>");

// menu a droite
var x=xmlDoc.getElementsByTagName("CD");
for (i=0;i<x.length;i++)
{ 
document.write("<tr><td>&nbsp;</td></tr>");
document.write("<tr>");
document.write("<td class=titre_menugc align=left>&nbsp;<img src=http://www.inox-industrie.com/images/puce_rond.gif width=16 align=absmiddle>&nbsp;");
document.write("<a class=link_menugc href="+x[i].getElementsByTagName("ARTIST")[0].childNodes[0].nodeValue+">"+x[i].getElementsByTagName("TITLE")[0].childNodes[0].nodeValue+"</a>");
document.write("</td>");
document.write("</tr>");

// Sous menu a droite
var y=xmlDoc.getElementsByTagName("CDS"+i);
for (j=0;j<y.length;j++)
{ 
document.write("<tr>");
document.write("<td width=132 align=left>&nbsp;&nbsp;<img src=http://www.inox-industrie.com/images/puce_carre.gif width=8 align=absmiddle>&nbsp;");
document.write("<a class=link_menusd href="+y[j].getElementsByTagName("ARTISTS")[0].childNodes[0].nodeValue+">"+y[j].getElementsByTagName("TITLES")[0].childNodes[0].nodeValue+"</a>");
document.write("</td>");
document.write("</tr>");
document.write("<tr><td width=132 colspan=2><img src=http://www.inox-industrie.com/images/espaceur.gif width=1 height=5></td></tr>");
}

}

document.write("</table>");
}
