function reloadPlugin( container, id, mode, extra_url, callback ) {
	var url = 'http://feriaonline.cosmobelleza.com/queries/render_plugin.php?plugin_id='+id+'&mode='+mode+extra_url;
/*
	new Ajax.Request( url, {
		method: 'GET',
		evalScripts: true,
		onSuccess: function(t){
			$(container).innerHTML = t.responseText;
			if ( callback )
			{
				callback.call();
			}
		}
	});*/

	var a = container;

	new Ajax.Updater( container, url, {
		method: 'GET',
		evalScripts: true,
		onComplete: function(t){
			// comprobamos si el plugin tiene contenido (div.emptyplugincontents)
// 			alert(container+' '+a);
// 			alert($(container).select('div.emptyplugincontents'));
			a = $(a);
			if ( t.responseText.indexOf('emptyplugincontents') == -1 )
			{
				a.up('.plugin').removeClassName('emptyplugin');
			}
			else
			{
				a.up('.plugin').addClassName('emptyplugin');
			}
			if ( callback )
			{
				callback.call();
			}
		}
	});
}
