function StrZero(strTexto, Tamanho)
{
	tam_texto = Tamanho - strTexto.length;
	return "0".repeat(tam_texto) + strTexto;
}
String.prototype.repeat = function( num )
{
	return new Array( parseInt(num) + 1 ).join( this );
}

