window.createRequest(); gonna start studying that one


i insert alert(); functions and it reaches to

Code:
function GetXmlHttpObject()
{

var xmlHttp=null;
try
 {
 xmlHttp=new XMLHttpRequest();
 }
catch (e)
 {

 try
  {
  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
alert('HERE'); //IT REACHES HERE
  }
 catch (e)
  {

  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp;
}
i tried Msxml2.XMLHTTP.6.0 but still no result ..