function trOnMouseOver(tr) {
	tr.style.backgroundColor = "#EEEEEE";
}

function trOnMouseOut(tr) {
	tr.style.backgroundColor = "#FFFFFF";
}

function send_post(surl, query) {// 创建xmlhttprequest,ajax开始
	var req; // 定义变量，用来创建xmlhttprequest对象
	if(window.XMLHttpRequest) {// 非IE浏览器，用xmlhttprequest对象创建
		req = new XMLHttpRequest();
	} else if(window.ActiveXObject) {// IE浏览器用activexobject对象创建
		req = new ActiveXObject("Microsoft.XMLHttp");
	}

	if(req) { //成功创建xmlhttprequest
		req.open("POST", surl, false);// 与服务端建立连接(请求方式post或get，地址,true表示异步)
		//req.setRequestHeader("Content-Type", "text/plain;charset=UTF-8");
		req.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
		req.send(query); //发送请求
		return req.responseText;
	}
}

function send_get(surl) {// 创建xmlhttprequest,ajax开始
	var req; // 定义变量，用来创建xmlhttprequest对象
	if(window.XMLHttpRequest) {// 非IE浏览器，用xmlhttprequest对象创建
		req = new XMLHttpRequest();
	} else if(window.ActiveXObject) { // IE浏览器用activexobject对象创建
		req = new ActiveXObject("Microsoft.XMLHttp");
	}

	if(req) { //成功创建xmlhttprequest
		req.open("GET", surl, false); //与服务端建立连接(请求方式post或get，地址,true表示异步)
		req.send(null); //发送请求
		return req.responseText;
	}
}