Please bear with me, as I'm not a coder :)First off, I am trying to create a little webpage inside of Livelink to be a landing page for Livelink related FAQs, Tips, etc. for our users.I created an XML file that has all of my data in it. I also created an XSL file that to make it look pretty

I have done this all before, on my desktop. I have never used XML/XSL on a server before, so I looked for some code to translate the files into an HTML file.I found the following code, which works great on my desktop (but it also prompts to let an ActiveX control run). It does not work at all in Livelink.Does anyone have any suggestions? I would prefer that users not get prompted to let an ActiveX control run. function loadXMLDoc(fname){var xmlDoc;// code for IEif (window.ActiveXObject) { xmlDoc=new ActiveXObject("Microsoft.XMLDOM"); }// code for Mozilla, Firefox, Opera, etc.else if (document.implementation && document.implementation.createDocument) { xmlDoc=document.implementation.createDocument("","",null); }else { alert('Your browser cannot handle this script'); }xmlDoc.async=false;xmlDoc.load(fname);return(xmlDoc);}function displayResult(){xml=loadXMLDoc("livelinkHome.xml");xsl=loadXMLDoc("livelink2.xsl");// code for IEif (window.ActiveXObject) { ex=xml.transformNode(xsl); document.getElementById("example").innerHTML=ex; }// code for Mozilla, Firefox, Opera, etc.else if (document.implementation && document.implementation.createDocument) { xsltProcessor=new XSLTProcessor(); xsltProcessor.importStylesheet(xsl); resultDocument = xsltProcessor.transformToFragment(xml,document); document.getElementById("example").appendChild(resultDocument); }}