function showInfo(x, y)
{
	  var xmlHttp; try { xmlHttp=new XMLHttpRequest(); } catch (e) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("Your browser does not support AJAX!"); return false; } } }  
		xmlHttp.onreadystatechange=function()
		{
  	  if(xmlHttp.readyState==4)
    	{
    		document.getElementById("info").innerHTML=xmlHttp.responseText;
    	}
  	}
		var responseUrl = "http://"+document.URL.split('/')[2]+"/lab/index.php/ipnis/info/"+x+"/"+y;
  	xmlHttp.open("GET", responseUrl, true);
  	xmlHttp.send(null);
}
function showCnt(x, y)
{
	  var xmlHttp; try { xmlHttp=new XMLHttpRequest(); } catch (e) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("Your browser does not support AJAX!"); return false; } } }  
		xmlHttp.onreadystatechange=function()
		{
  	  if(xmlHttp.readyState==4)
    	{
    		document.getElementById("cnt").innerHTML=xmlHttp.responseText;
    	}
  	}
		var responseUrl = "http://"+document.URL.split('/')[2]+"/lab/index.php/map/cnt/"+x+"/"+y;
  	xmlHttp.open("GET", responseUrl, true);
  	xmlHttp.send(null);
}
function showAez(x, y)
{
	  var xmlHttp; try { xmlHttp=new XMLHttpRequest(); } catch (e) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("Your browser does not support AJAX!"); return false; } } }  
		xmlHttp.onreadystatechange=function()
		{
  	  if(xmlHttp.readyState==4)
    	{
    		document.getElementById("aez").innerHTML=xmlHttp.responseText;
    	}
  	}
		var responseUrl = "http://"+document.URL.split('/')[2]+"/lab/index.php/map/aez/"+x+"/"+y;
  	xmlHttp.open("GET", responseUrl, true);
  	xmlHttp.send(null);
}
function showAdmin(x, y)
{
	  var xmlHttp; try { xmlHttp=new XMLHttpRequest(); } catch (e) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("Your browser does not support AJAX!"); return false; } } }  
		xmlHttp.onreadystatechange=function()
		{
  	  if(xmlHttp.readyState==4)
    	{
    		document.getElementById("admin").innerHTML=xmlHttp.responseText;
    	}
  	}
		var responseUrl = "http://"+document.URL.split('/')[2]+"/lab/index.php/ipnis/dstr/"+x+"/"+y;
  	xmlHttp.open("GET", responseUrl, true);
  	xmlHttp.send(null);
}