function	get_data(container, type)
{

		var request = new Request({
			'method': 'get',
			'url': '/foros/lists/' + type + '.html',

			onSuccess: function(data, xml) {
				$(container).innerHTML = data;
			},

			onFailure: function() {
				$(container).innerHTML = '<p>No encontramos art&iacute;culos</p>';
			},

			onException: function() {
				this.onFailure();
			}

		});

		request.send();
}	

