GIF89a
function addWish(prod_id,user_id,sale_price,qty) { 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"; alert("Product added to wishlist"); } else if(this.responseText==0) { document.getElementById("overlay").style.display = "none"; alert("Error : Unable to add item"); } else if(this.responseText==2) { document.getElementById("overlay").style.display = "none"; window.location.href = ("login.php"); } } }; xmlhttp.open("GET","addwishlist.php?prod_id="+prod_id+"&user_id="+user_id+"&sale_price="+sale_price+"&qty="+qty,true); xmlhttp.send(); }