var xmlpath="/XmlData/gjzw.xml";
		Dom.load(xmlpath);
		
		var root=Dom.documentElement;
		if(root!=null)
		{
			
			var nodes=root.selectNodes("//NewDataSet")[0].childNodes;
			var nodenum=nodes.length;
			if(nodenum>0)
			{
			
				for(var i=0;i<nodenum;i++)
				{
					
					document.write("<tr>");
					document.write("<td height='22' style='border-left: 1px solid #CDCDCD; border-bottom: 1px solid #CDCDCD'>");
					document.write("<a href='http://www.sdrc.com.cn/ltfw/zwlist.asp?id="+nodes(i).selectSingleNode("sd2200").text+"' target='_blank'><font color='#666666'>"+ nodes(i).selectSingleNode("sd2202").text +"</font></a></td>");
					document.write("</td>");
					document.write("<td height='22' style='border-left: 1px solid #C0C0C0; border-right: 1px solid #C0C0C0; border-bottom: 1px solid #C0C0C0'>");
					document.write("<font color='#666666'>"+ nodes(i).selectSingleNode("sd2205").text +"</font></td>");
					document.write("</td>");
					document.write("</tr>");
				}
				
			
			}
		
		
		}	