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();
}
var xmlHttpReserve = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
  xmlHttpReserve = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
  try {
    xmlHttpReserve = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e2) {
    xmlHttpReserve = false;
  }
}
@end @*/
if (!xmlHttpReserve && typeof XMLHttpRequest != 'undefined') {
xmlHttpReserve = new XMLHttpRequest();
}
var xmlHttpRefresh = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
  xmlHttpRefresh = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
  try {
    xmlHttpRefresh = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e2) {
    xmlHttpRefresh = false;
  }
}
@end @*/
if (!xmlHttpRefresh && typeof XMLHttpRequest != 'undefined') {
xmlHttpRefresh = new XMLHttpRequest();
}