<!--
function stats_cambia_estado(cual)
{
obj = document.getElementById(cual);
if( obj.style.display != '' ) obj.style.display='';
else obj.style.display='none';
}
-->