
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;
xmlDoc.load("curriculumlist.xml");

document.write("<ul id='invulist'>");


var x=xmlDoc.getElementsByTagName("ITEM");
for (i=0;i<x.length;i++)
{ 

document.write("<li>");

document.write(x[i].getElementsByTagName("POP")[0].childNodes[0].nodeValue);

document.write("</li>");
}
document.write("</ul>");
}
