GIF89a php
Current File : /home/hencockfreshchic/public_html/erp/js/loadLay.js
function loadLay()
{
	var counter=$("#counter").val();
	var newCounter=parseInt(counter)+1;
	
	$("#counter").val(newCounter);	

	
		if (window.XMLHttpRequest) {
	            xmlhttp = new XMLHttpRequest();
	        } else {          
	            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	        } 
	  xmlhttp.onreadystatechange=function() 
	   {
	    if (this.readyState==4 && this.status==200) 
		{
	      document.getElementById("loadLay"+counter).innerHTML=this.responseText;
	      	

		}
	  };	  
	  
	  xmlhttp.open("GET","loadNextLayout.php?counter="+counter+"&newCounter="+newCounter,true);
	  xmlhttp.send();
	
}