var xmlo;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
  try {
  xmlo=new ActiveXObject("Msxml2.XMLHTTP")
 } catch (e) {
  try {
    xmlo=new ActiveXObject("Microsoft.XMLHTTP")
  } catch (E) {
   xmlo=false
  }
 }
@else
 xmlo=false
@end @*/
if (!xmlo && typeof XMLHttpRequest!='undefined') {
 try {
  xmlo = new XMLHttpRequest();
 } catch (e) {
  xmlo=false
 }
}

