/**
 * @author growin
 */

//	
function ajaxFunction()
{	
	var xmlHttp;
	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp = new XMLHttpRequest();
	} 
	catch (e) {
		// Internet Explorer
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		} 
		catch (e) {
			try {
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			} 
			catch (e) {
				alert("Seu Navegador é muito antigo, ou não atinge os requisitos minimos!!!");
				return false;
			}
		}
	}
	return xmlHttp;
}

getFriends = function(varID, varIDuser)
{	
	xmlHttp = ajaxFunction();

	xmlHttp.onreadystatechange = function getReturn(){
		if (xmlHttp.readyState == 4) {
			document.getElementById("amigos").style.display = "";
			document.getElementById("amigos").innerHTML = xmlHttp.responseText;
		}
	}

	xmlHttp.open("GET", "adicionaAmigos.php?amigo="+ varIDuser+"&id="+varID, true);
	xmlHttp.send(null);
}
