<!--

var xmlHttpM
function callMember(MemberID)
{
	xmlHttpM=GetxmlHttpObjectM()
	if (xmlHttpM==null)
		 {
		 alert ("Browser does not support HTTP Request")
		 return
		 }
		 document.getElementById("memberInfo").innerHTML=('<img src="CrypTImg.php?image=ajax-loading.gif" style="margin:80px 0 0 160px;" />')
	var urlM="../echoAJAX.php"
	urlM=urlM+"?MID="+MemberID
	xmlHttpM.onreadystatechange = stateChangedM
	xmlHttpM.open("POST",urlM,true)
	xmlHttpM.send(null)
}
function GetxmlHttpObjectM()
{
var xmlHttpM=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttpM=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlHttpM=new ActiveXObject("Msxml2.xmlHttp");
  }
 catch (e)
  {
  xmlHttpM=new ActiveXObject("Microsoft.xmlHttp");
  }
 }
 return xmlHttpM;
}
function stateChangedM() 
{ 
		if (xmlHttpM.readyState==4 || xmlHttpM.readyState=="complete")
			 {
			 document.getElementById("memberInfo").innerHTML=xmlHttpM.responseText
			 } 
}
//-->