﻿    function DeleteFriend(id)
    {
        if(!confirm('Esta seguro que quiere eliminar el contacto?'))
        {
            window.location='#';
        }
        else
        {
        document.getElementById('mge_'+id).style.display= 'none';
        
        var url = '/Contact/Contact.ashx?ChangeStatusFriend&amp;Format=json';												
		    new Ajax.Request(url, {method: 'post', parameters: {WillBe: 4,FriendId: id}, onSuccess: function(transport) 
    		    {
                    var rsp = transport.responseText.evalJSON().rsp;
					    if(rsp.stat == 'fail')
						    alert(rsp.err.msg);
                    }
                }
            );
        }
    }