//TO CHANGE VALUE ON CLICK
function getAgentsOnClick(id,page,limit)

{


if (id=="0")
{
}

else
	{

	

var xmlhttp;

//Check if we are using IE.
try {
//If the Javascript version is greater than 5.
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
//If not, then use the older active x object.
try {
//If we are using Internet Explorer.
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
//Else we must be using a non-IE browser.
xmlhttp = false;
}
}
//If we are using a non-IE browser, create a javascript instance of the object.
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
xmlhttp = new XMLHttpRequest();
}


var serverPage = "../common/getAgents.php?id="+id+"&page="+page+"&limit="+limit;

xmlhttp.open("POST", serverPage);

xmlhttp.onreadystatechange = function ()
{
if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
{
var productName = document.getElementById("mapright");
productName.innerHTML = xmlhttp.responseText;

}


}

xmlhttp.send(null);

	}

}









//SEND EMAIL
function sendAgentEmail(submit,name,email,tel,company,territory,request,topic)

{



var xmlhttp;

//Check if we are using IE.
try {
//If the Javascript version is greater than 5.
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
//If not, then use the older active x object.
try {
//If we are using Internet Explorer.
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
//Else we must be using a non-IE browser.
xmlhttp = false;
}
}
//If we are using a non-IE browser, create a javascript instance of the object.
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
xmlhttp = new XMLHttpRequest();
}


var productName = document.getElementById("mapright");

var serverPage = "../common/sendAgentEmail.php?submit="+submit+"&name="+name+"&email="+email+"&tel="+tel+"&company="+company+"&territory="+territory+"&request="+request+"&topic="+topic;



xmlhttp.open("POST", serverPage);

xmlhttp.onreadystatechange = function ()
{
if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
{

productName.innerHTML = xmlhttp.responseText;

}


}

xmlhttp.send(null);


}
