﻿Ext.BLANK_IMAGE_URL = '/content/ext/resources/images/default/s.gif';

Ext.namespace('MAS');

Ext.QuickTips.init();

Ext.util.Format.gbMoney = function(v){
    v = (Math.round((v-0)*100))/100;
    v = (v == Math.floor(v)) ? v + ".00" : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
    return "£" + v ;
};
