function fvFormatCents()
{
}


fvFormatCents.prototype.unformat = function(value)
{
	return fvFormat.zeroDefault(parseFloat(fvFormat.removeCommas(value)));
}

fvFormatCents.prototype.format = function(value)
{
	return fvFormat.formatCents(value);
}