var re = null;
function cRe() {
  try {
    re=new XMLHttpRequest(); //пытаемся создать объект запроса
  } catch (trymicrosoft) {
    try {
      re=new ActiveXObject("Msxml2.XMLHTTP");
    } catch (othermicrosoft) {
      try {
        re=new ActiveXObject("Microsoft.XMLHTTP");
      } catch (failed) {
        re = null;
      }
    }
  }
}
