var xmlHttp
function Send_BranchCode(brId)
{ 
	if (brId != "")
	{
			xmlHttp=GetXmlHttpObject();
			//document.getElementById("imgShowWaiting").style.display="block";
		/*	document.getElementById("ref").disabled = true;
			document.getElementById("ref").src = "../images/icon_alert_red.gif";
		*/	
			if (xmlHttp==null)
			{
				alert ("Your browser does not support AJAX!");
				return;
				
			} 
			var url="../about_us/NetworkBRDetails_ajax.asp";		
			url=url+"?sid="+Math.random();
			url=url+"&brId="+brId;
			xmlHttp.onreadystatechange=stateChanged;
			xmlHttp.open("GET",url,true);
			xmlHttp.send(null);
	}
	else
	{
		alert("Please select Branch");
	}
}

