window.onload = function(){
var httpObj = new XMLHttpRequest();
httpObj.onload = function(){
document.getElementById("result").innerHTML = httpObj.responseText;
};
httpObj.open("get","../info.html",true);
httpObj.send(null);
}