var hero_html="<table id='ctl00_ssqBonus_DataList1' cellspacing='0' border='0' style='border-collapse:collapse;'>";
var xmlDoc = new ActiveXObject('Microsoft.XMLDOM'); 
xmlDoc.async = false; 
var t = (new Date()).getTime();
xmlDoc.load('/publish_content/opencode/190/last_openuser_list.xml');
var mod = "//row";
var row = xmlDoc.selectNodes(mod);
for(var i=0;i<row.length;i++){
	var username = row.item(i).attributes.getNamedItem("username").nodeValue;
	if(username=='刘连喜')
		username='闪电1';
	var money = row.item(i).attributes.getNamedItem("money").nodeValue;
	var issus = row.item(i).attributes.getNamedItem("issus").nodeValue;
	hero_html = hero_html + '<tr><td class="bntlinks">'+issus+'期<b> '+username+'</b> 中<font color=red>'+money+'</font>元</td></tr>';
}
hero_html = hero_html + '</table>';
//alert(hero_html);
var _payUserList = document.all("payUserList");
if(_payUserList!=null)
	_payUserList.innerHTML= hero_html;
