2015-11-25

    Number.prototype.fixed = function(n) {
    with(Math) {
    return round(Number(this) pow(10,n)) / pow(10, n);
    }
    }
    var GetPercent = function(d1, d2) {
    return d2 == 0 ? “0%” : (d1/d2
    100).fixed(0) + “%”;
    };