GIF89a php
Current File : /home/hencockfreshchic/public_html/admin.cpanel/uploadjs/deletePriority.js
function deletePriority(sr,prod_id)
{
	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){
	      		alert("Priority has been removed from the selected product. \n Now product behave like a normal products");
	      		window.location.href = ("priority.php");
	      }
	      else if(this.responseText==0)
	      {
	      		alert("Error : Unable to remove priority from the selected product. \n For more information contact to developers");
	      }
	}
  };

  xmlhttp.open("GET","deletePriority.php?sr="+sr+"&prod_id="+prod_id,true);
  xmlhttp.send();
}