var Utils = {
	to_money: function(num) {
		if (num == NaN) num = 0;
		return num.toFixed(2).toString().replace(/[\.]/g, ',');
	}
};
