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