function updateWall()
	{
		setTimeout("updateWall()",10000); 
		xajax_buildWall(document.getElementById('owner').value, 'ajax');
	}
function postWall()
	{
		content = document.getElementById('message').value;		
		id = document.getElementById('owner').value;
		xajax_postWall(id, content);
	}
function postWall_cb(reply)	
	{
		document.getElementById('message').value = '';
		xajax_buildWall(reply, 'ajax');
	}
function removeWall(id)
	{
		xajax_removeWall(id);	
	}
function removeWall_cb(id)
	{
		xajax_buildWall(id, 'ajax');	
	}
	