function deleteWall(guid,action){
	if (confirm("Are you sure you want to delete this wall ?"))
    { 
		$.post(action, {
			share_guid:guid,
			manage_action:'remove_wall'
		},function(data){
			if(data){
				$("#photo"+guid).remove();
				$("#sharewall_content").html(data);
				$("#share_data").val("what is on your mind ?");	
			}
		});
    }else {         
      return false;
    } 
}
