var xmlHttp

function showMapInfo(mp)
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
  {
  alert ("Browser does not support HTTP Request")
  return
  } 
var url="/includes/ajax/mapText.php"
url=url+"?mp="+mp
xmlHttp.onreadystatechange=stateChangedMap
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
} 

function stateChangedMap() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 { 
 document.getElementById("mapInfo").innerHTML=xmlHttp.responseText 
 } 
}

function showResult(str)
{

xmlHttp=GetXmlHttpObject()

if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 } 
}
