function loadXML(xmlFile) 
{ 
	var xmldoc=new ActiveXObject("MSXML2.DOMDocument.3.0");
	xmldoc.async=false;
	xmldoc.load(xmlFile);
	nodes=xmldoc.documentElement.childNodes;
	return nodes;
}
