GIF89a php
Current File : /home/hencockfreshchic/public_html/admin.cpanel/uploadjs/repairMe.js
function repairMe()
{
	if (window.XMLHttpRequest) {
            xmlhttp = new XMLHttpRequest();
        } else {          
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } 
  xmlhttp.onreadystatechange=function() 
   {
    if (this.readyState==4 && this.status==200) 
	{
      $("#scan_files").html(this.responseText);
	}
  };
  xmlhttp.open("GET","repairMe.php",true);
  xmlhttp.send();
}