

function testimonial(url)
{
var xmlDoc;
if (window.XMLHttpRequest && !(window.ActiveXObject))
  {
  xmlDoc=new window.XMLHttpRequest();
  xmlDoc.open("GET",url,false);
  xmlDoc.send("");
  xmlDoc=xmlDoc.responseXML;
  }
// IE 5 and IE 6
else if (typeof window.ActiveXObject != 'undefined')
  {
  xmlDoc=new ActiveXObject("Msxml2.DOMDocument.3.0");
  //xmlDoc.setProperty("ServerHTTPRequest", false)
  xmlDoc.async=false;
  xmlDoc.load(url);
  }


var x=xmlDoc.getElementsByTagName("testimonial");
for (i=0;i<x.length;i++)
  { 
  document.write("<div class='bodytext' align='justify'>");
  document.write(x[i].getElementsByTagName("content")[0].childNodes[0].nodeValue);
   document.write("<div align='right' class='small-heading'><strong>-");
  document.write(x[i].getElementsByTagName("posted")[0].childNodes[0].nodeValue);
  document.write("</strong></div></div><br><br>");
  }

}

