function GetXmlHttpObject()
{
	var xmlHttp=null;
	try
	{
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e)
	{
		// Internet Explorer
		try
		{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	return xmlHttp;
}
function ajaxLawyerPhone(LawyerID)
{
	var xmlHttp;
	xmlHttp = GetXmlHttpObject();
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			var theResponse;
			theResponse = xmlHttp.responseText;
			var theID;
			theID = "lawyer_phone_"+LawyerID;
			document.getElementById(theID).innerHTML=theResponse;
		}
	}
	var url;
	url = "/javascript/ajax/lawyer_phone.php?lawyer_ID="+LawyerID;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}
function ajaxLawyerFax(LawyerID)
{
	var xmlHttp;
	xmlHttp = GetXmlHttpObject();
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			var theResponse;
			theResponse = xmlHttp.responseText;
			var theID;
			theID = "lawyer_fax_"+LawyerID;
			document.getElementById(theID).innerHTML=theResponse;
		}
	}
	var url;
	url = "/javascript/ajax/lawyer_fax.php?lawyer_ID="+LawyerID;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}
function ajaxLawyerAddress(LawyerID)
{
	var xmlHttp;
	xmlHttp = GetXmlHttpObject();
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			var theResponse;
			theResponse = xmlHttp.responseText;
			var theID;
			theID = "lawyer_address_"+LawyerID;
			document.getElementById(theID).innerHTML=theResponse;
		}
	}
	var url;
	url = "/javascript/ajax/lawyer_address.php?lawyer_ID="+LawyerID;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}

function ajaxLawFirmPhone(LawFirmID)
{
	var xmlHttp;
	xmlHttp = GetXmlHttpObject();
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			var theResponse;
			theResponse = xmlHttp.responseText;
			var theID;
			theID = "law_firm_phone_"+LawFirmID;
			document.getElementById(theID).innerHTML=theResponse;
		}
	}
	var url;
	url = "/javascript/ajax/law_firm_phone.php?law_firm_ID="+LawFirmID;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}
function ajaxLawFirmFax(LawFirmID)
{
	var xmlHttp;
	xmlHttp = GetXmlHttpObject();
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			var theResponse;
			theResponse = xmlHttp.responseText;
			var theID;
			theID = "law_firm_fax_"+LawFirmID;
			document.getElementById(theID).innerHTML=theResponse;
		}
	}
	var url;
	url = "/javascript/ajax/law_firm_fax.php?law_firm_ID="+LawFirmID;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}
function ajaxLawFirmAddress(LawFirmID)
{
	var xmlHttp;
	xmlHttp = GetXmlHttpObject();
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			var theResponse;
			theResponse = xmlHttp.responseText;
			var theID;
			theID = "law_firm_address_"+LawFirmID;
			document.getElementById(theID).innerHTML=theResponse;
		}
	}
	var url;
	url = "/javascript/ajax/law_firm_address.php?law_firm_ID="+LawFirmID;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}