<% PageHeader "Resources", "facilities" %>
Below is a summary of our production equipment, facilities and professional qualifications. AGM Steel Industries Ltd. will be happy to arrange a constructive meeting at your convenience to discuss how we may be of assistance to your organization.

<% Function transformXMLFile(strXMLFile, strXSLFile) 'Declare local variables Dim objXML Dim objXSL 'Instantiate the XMLDOM Object that will hold the XML file. set objXML = Server.CreateObject("Microsoft.XMLDOM") 'Turn off asyncronous file loading. objXML.async = false 'Load the XML file. objXML.load(strXMLFile) 'Instantiate the XMLDOM Object that will hold the XSL file. set objXSL = Server.CreateObject("Microsoft.XMLDOM") 'Turn off asyncronous file loading. objXSL.async = false 'Load the XSL file. objXSL.load(strXSLFile) 'Use the "transformNode" method of the XMLDOM to apply the 'XSL stylesheet to the XML document. Then the output is 'written to the client. Response.Write(objXML.transformNode(objXSL)) End Function transformXMLFile Server.MapPath("facilities.xml"),Server.MapPath("facilities.xsl") %>

<% PageFooter %>