0byt3m1n1
Path:
/
data
/
applications
/
aps
/
mantis
/
1.2.7-0
/
standard
/
htdocs
/
javascript
/
min
/
[
Home
]
File: ajax.js
var processURI="./xmlhttprequest.php";var liveReq=false;if(window.XMLHttpRequest){liveReq=new XMLHttpRequest()}function AjaxLoad(a,c,b){if(liveReq&&liveReq.readyState<4){liveReq.abort()}if(window.XMLHttpRequest){}else{if(window.ActiveXObject){liveReq=new ActiveXObject("Microsoft.XMLHTTP")}}name=this.id;liveReq.onreadystatechange=function(){liveReqProcessReqChange(a,b)};liveReq.open("GET",processURI+"?"+c);document.getElementById(a).innerHTML=loading_lang;liveReq.send(null);return false}function liveReqProcessReqChange(a,b){if(liveReq.readyState==4){document.getElementById(a).innerHTML=liveReq.responseText;document.getElementById(b).innerHTML=""}};