
  var xmlHttp;

  function createXMLHttpRequest() 
  {
    if (window.ActiveXObject) 
    {
      xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    } 
    else if (window.XMLHttpRequest) 
    {
      xmlHttp = new XMLHttpRequest();
    }
  }

  function goCallback() 
  {
    if (xmlHttp.readyState == 4) 
    {
      if (xmlHttp.status == 200) 
      {
         var testimonialtext = xmlHttp.responseText;
         document.getElementById('testimonialinfo').innerHTML = testimonialtext;
      }
    }
  }

  createXMLHttpRequest();
  xmlHttp.open("GET", "/include/testimonials2.php", true);
  xmlHttp.onreadystatechange = goCallback;
  xmlHttp.send(null);

