function iner(objeto,archivo){

window.addEvent('domready', function() {
	// You can skip the following two lines of code. We need them to make sure demos
	// are runnable on MooTools demos web page.
	if (!window.demo_path) window.demo_path = '';
	var demo_path = window.demo_path;
	// --
		
	//We can use one Request object many times.
	
	var req = new Request.HTML({url:archivo, 
		onSuccess: function(html) {
			$('result').set('text', '');
			$('result').adopt(html);
		},
		onFailure: function() {
			$('result').set('text', 'The request failed.');
		}
	});
	
	
	
	$(objeto).addEvent('click', function() {
		req.send();
	});
	

});
}
