Number.prototype.zero_fill=function(n){return ((new Array(n).join('0'))+this).substr(-n);}
