
var path_xml="http://"+getHost(document.URL)+"/menubar/xml/";

var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async="false";

xmlDoc.load(path_xml+"XXSearchclass.xml");
var nodes = xmlDoc.documentElement.childNodes;
var strhtml="";

for (var i=0;i<nodes.length;i++)
{
	strhtml = strhtml+"<option value="+nodes.item(i).getAttribute("code")+">"+nodes.item(i).getAttribute("tag")+"</option>";
	/*
	for (var j=0;j<nodes.item(i).childNodes.length ;j++ )
		{
			strhtml = strhtml+"<option value="+nodes.item(i).childNodes(j).getAttribute("code")+">"+nodes.item(i).childNodes(j).text+"</option>";	
		}	
	*/	
}

document.write(strhtml);





