function price_format(value) { var value = new Number(value); return value.toFixed(2); } function price_format_vat(value) { value = new Number(value * 1.23); return value.toFixed(2); } function format_price (value) { return price_format(value); } function format_price_vat (value) { return price_format(value); }