function show(json){
	$("el_"+json.idd).setHTML('');

	json.arr.each(function(j){
		div = new Element('div');
		div.setHTML(j.v);
		
		$("el_"+json.idd).adopt(div);
	})
}

function fireShowObj(id){
	var request = new Json.Remote("/?Obj=qo", {
		onComplete: function(j) {
			Listado(j,'el_'+id,'el2');
		}
	}).send({'qo':id});
}