GIF89a php
Current File : /home/hencockfreshchic/public_html/js/delCartItem3.js
function delCartItem3(prod_id)
{
 

	document.getElementById("overlay").style.display = "block";

	if (window.XMLHttpRequest) {
            xmlhttp = new XMLHttpRequest();
        } else {          
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } 
  xmlhttp.onreadystatechange=function() 
   {
    if (this.readyState==4 && this.status==200) 
	{
		
      if(this.responseText==1)
      {
      	
      	 document.getElementById("overlay").style.display = "none";
      	 
      	 document.getElementById("a"+prod_id).style.display = "none";
      	 window.location.reload();
      	
      }
      else if(this.responseText==0)
      {
        document.getElementById("a"+prod_id).style.display = "none";
      	 document.getElementById("overlay").style.display = "none";
      	alert("Error : Unable to delete items from cart");
      }
      else if(this.responseText==2)
      {
        document.getElementById("a"+prod_id).style.display = "none";
      	 document.getElementById("overlay").style.display = "none";
      	window.location.href = ("login.php");
      }
	}
  };
 
  xmlhttp.open("GET","delCartItem2.php?prod_id="+prod_id,true);
  xmlhttp.send();
}