function growl_box(msg, options) {
    options = $merge({
        title: '',
        text: '',
        image: '/images/upfactory/commun/ajax_loader.gif',
        duration: 3
    }, options);
    options.text = msg;
        
    Growl.Bezel(options);
}

