var xmlHttp;

//-----------------------------------------------------------------
function geterrormsg(a)
{  
	
	//document.getElementById('showdropdown').style.visibility = 'hidden';
	
	//alert(branch_id);
	
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null)
  	{
  		alert ("Your browser does not support AJAX!");
  		return;
  	}
	//var url="index.php?main_page=ajax_search&task=GetLocation&loc_id="+id;		
	var url="ip_error.php?email_id="+a;		 
	 
	xmlHttp.onreadystatechange=stateChanged2;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}

function stateChanged2() 
{ 
	if (xmlHttp.readyState==4)
	{  
	 //document.getElementById("locations").innerHTML=xmlHttp.responseText;		  
	 
	 document.getElementById("error_msg").innerHTML = xmlHttp.responseText;
	}
}

//---------------------------------------------------------------------------------
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;
}
//-----------------------------------------------------------------