function contar()
    {
        numero += 3;
        numeroTXT = numero + ''; 
        jackpot = numeroTXT.substr(0, numeroTXT.length - 2);
        temp = "";
        for(i = 0; i < Math.floor(jackpot.length / 3); i++)
        {
            temp = ',' + jackpot.substr(jackpot.length - 3 * (i + 1), 3) + temp;
        }
        if((jackpot.length % 3) == 0)
        {
            temp = temp.substr(1);
        }
        else
        {
            temp = jackpot.substr(0, jackpot.length % 3) + temp;
        }
        jackpot = temp + '.' + numeroTXT.substr(numeroTXT.length - 2);
        document.getElementById("divContador").innerHTML = '$ ' + jackpot;
        setTimeout("contar()", 1200); 
    }
