/* 创建 XMLHttpRequest 对象Start */
var XMLHttp = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
	XMLHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
	try {
		XMLHttp = new ActiveXObject("Microsoft.XMLHTTP");
	} catch(e2) {
		XMLHttp = false;
	}
}
@end @*/

if (!XMLHttp && typeof XMLHttpRequest != 'undefined') {
	XMLHttp = new XMLHttpRequest();
}
/* 创建 XMLHttpRequest 对象End */

/* 取得指定id对象Start */
function $(strElementId) {
	return document.getElementById(strElementId);
}
/* 取得指定id对象End */
