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