function showWeather(location,save,module_id)
{var busy=$('weather_loading');Element.show(busy);var url=URL_BASE+'clima/weather/'+location;var divUpdate=$('div_weather');divUpdate.innerHTML='';new Ajax.Updater(divUpdate,url,{onComplete:function()
{Element.hide(busy);if(save==1&&module_id!=0)
{var modules=YAHOO.pcba.ModuleManager.getByProperty('module_id',module_id);var module=modules.pop();module=module.id;YAHOO.pcba.ModuleManager.savePreference(module,'location',location);}}});}