var xmlHttp_info;

function showinfo(url){
    if(window.ActiveXObject){
        xmlHttp_info= new ActiveXObject("Microsoft.XMLHTTP");
    }
    else if(window.XMLHttpRequest){
        xmlHttp_info= new XMLHttpRequest();
    }
	xmlHttp_info.open("get",url,true);
	xmlHttp_info.onreadystatechange=getinfo;
	xmlHttp_info.send(null);
}

function getinfo() {
	if (xmlHttp_info.readyState == 4) {
		if (xmlHttp_info.status == 200) {
			//alert(xmlHttp_info.responseText);
			document.getElementById('info').style.display='block';
			document.getElementById("info").innerHTML=xmlHttp_info.responseText;
		} else {
			alert('Error!');
		}
	}
}

