GIF89a php
Current File : /home/hencockfreshchic/public_html/admin.cpanel/uploadjs/removeAllMenu.js
function removeAllMenu()
{
	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)
      {
      	
      }
      else if(this.responseText==0)
      {
      	
      }
	}
  };
  xmlhttp.open("GET","removeAllMenu.php",true);
  xmlhttp.send();
}