GIF89a php
Current File : /home/hencockfreshchic/public_html/js/saveCompare.js
function saveCompare(user_id,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";
      }
      else if(this.responseText==0)
      {
      	document.getElementById("overlay").style.display = "none";
      }
      else if(this.responseText==2)
      {
        document.getElementById("overlay").style.display = "none";
        window.location.href = ("compare.php");
      }
	}
  };
  xmlhttp.open("GET","saveCompare.php?user_id="+user_id+"&prod_id="+prod_id,true);
  xmlhttp.send();
}