function __NBase_BaseListBox_SetTrackerValue(vstrListBoxID){
	var objListBox=document.getElementById(vstrListBoxID);
	if(objListBox==null) return false;
	var strItemTrackerID = objListBox.getAttribute("ItemTrackerID");
	if(strItemTrackerID==null) return false;
	var objItemTracker=document.getElementById(strItemTrackerID);
	var objXML = new ActiveXObject("Microsoft.XMLDOM");
	objXML.loadXML("<root/>");
	
	var strValue="";
	for(var i=0;i<objListBox.options.length;i++){
		var objNewNode = objXML.createElement("node");
		
		//objNewNode.setAttribute("key",__NBase_BaseListBox_HtmlEncode(objListBox.options[i].value));   //org
		objNewNode.setAttribute("key",objListBox.options[i].value);
		
		//objNewNode.text=__NBase_BaseListBox_HtmlEncode(objListBox.options[i].text);
		objNewNode.text=objListBox.options[i].text;
		
		objXML.documentElement.appendChild(objNewNode);
		
		//strValue += escape(objListBox.options[i].value) + "\\|";
		//strValue += escape(objListBox.options[i].text) + "\\,";
	}
	//if(strValue!="") strValue=strValue.substr(0,strValue.length-2);

	objItemTracker.value=__NBase_BaseListBox_HtmlEncode(objXML.xml);


}
function __NBase_BaseListBox_HtmlEncode(vstrVal){
	vstrVal = vstrVal.replace(/&/g,"\&amp;");
	vstrVal = vstrVal.replace(/</g,"\&lt;");
	vstrVal = vstrVal.replace(/>/g,"\&gt;");
	vstrVal = vstrVal.replace(/"/g,"\&quot;");	
	return vstrVal;
}
