GIF89a php
Current File : /home/hencockfreshchic/public_html/app_old/js/loadGrandTotal.js
function loadGrandTotal()
{
	if (window.XMLHttpRequest) {
            xmlhttp = new XMLHttpRequest();
        } else {          
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } 
  xmlhttp.onreadystatechange=function() 
   {
    if (this.readyState==4 && this.status==200) 
	{
      document.getElementById("grandTotal").innerHTML=this.responseText;
	}
  };
  xmlhttp.open("GET","loadGrandTotal.php",true);
  xmlhttp.send();
}