function nuevoAjax()
{ 
    var xmlhttp=false; 
    try 
    { 
        xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); 
    }
    catch(e)
    { 
        try
        { 
            xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); 
        } 
        catch(E) { xmlhttp=false; }
    }
    if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp=new XMLHttpRequest(); } 

    return xmlhttp; 
}

/* profile */
function add_friend(f)
{
    ajax=nuevoAjax();
    ajax.open("GET","/foro/ajax/ajax.php?type=addfriend&f="+f, true);
	ajax.onreadystatechange=function() 
    { 
        if (ajax.readyState==4)
        { 
            document.getElementById("add_friend").innerHTML=ajax.responseText;
        } 
    }
    ajax.send(null);   
}

function delete_friend(i,n)
{
    var con ;
    con = confirm("¿Eliminas a "+n+" de tus amigos?");
    if (con == true) {
		document.form_bor.vborrar.value = i;
	  	document.form_bor.submit();
	}
}