function XMLDownloadProgress(f,d,a,c){if(f.readyState==4){try{a(f.responseXML,c)}catch(b){}}}function LoadXMLAsync(b,g,a,d){try{if(typeof ActiveXObject!="undefined"){var f=new ActiveXObject("Msxml2.XMLHTTP");try{f.onreadystatechange=function(){try{XMLDownloadProgress(f,g,a,d)}catch(h){}}}catch(c){}f.open("GET",b,true);f.send(null)}else{var f=new XMLHttpRequest();try{f.onreadystatechange=function(){try{XMLDownloadProgress(f,g,a,d)}catch(h){}}}catch(c){}f.open("GET",b,true);f.send(null)}}catch(c){}return true}function LoadXMLAsyncPOST(c,f,a,d,b){if(typeof ActiveXObject!="undefined"){var e=new ActiveXObject("Msxml2.XMLHTTP");e.onreadystatechange=function(){XMLDownloadProgress(e,f,a,d)};e.open("POST",c,true);e.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");e.send(b)}else{var e=new XMLHttpRequest();e.onreadystatechange=function(){XMLDownloadProgress(e,f,a,d)};e.open("POST",c,true);e.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");e.send(b)}return true};