xmlHttp.open("GET", "TestFile.txt", true);
xmlHttp.onreadystatechange = function()
{
  if (xmlHttp.readyState == 4)
  {
    alert(xmlHttp.responseText);
  }
}
xmlHttp.send(null);
