GIF89a php
Current File : /home/hencockfreshchic/public_html/admin.cpanel/js/removeMenu2.js
function removeMenu2(field){
	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("Menu has been removed");
      	window.location.href = ("menus.php");

      }
      else if(this.responseText==0)
      {
      	document.getElementById("overlay").style.display = "none";
      	alert("Unable to remove menu");
      }
	}
  };
  xmlhttp.open("GET","removeMenu2.php?field="+field,true);
  xmlhttp.send();
}