Lines Matching full:xmlfile
8 var stylesheet, xmlFile, cache, doc;
13 xmlFile = document.implementation.createDocument("", "", null);
15 if (xmlFile.load){
16 xmlFile.load("site.xml");
21 xmlFile.addEventListener("load", transform, false);
26 xmlFile = new ActiveXObject("msxml2.DOMDocument.3.0");
27 xmlFile.async = false;
28 xmlFile.load("site.xml");
40 processor.input = xmlFile;
50 doc = processor.transformToDocument(xmlFile);