/*
server.test('alert called elsewhere');

function test_cb(json)
{
	alert(json);
}

server.test('cb passed to call', function(json){
	alert(json);
});
*/

