function FormatPrice(total)
{
    //total = Math.ceil(total*100)/100;
	total = Math.round(total*100)/100;

	total = total.toString();
    re1 = /\./;
    if ((arr = re1.exec(total)) == null)
    {
        total = total + '.00';
    }

    re2 = /\.(\d){1}$/;
    if ((arr = re2.exec(total)) != null)
    {
        total = total + '0';
    }
	return total;
}