function growl_box(msg, options) {
/*    options = $merge({
        title: '',
        text: '',
        image: '/images/decogalerie/commun/ajax_loader.gif',
        duration: 1
    }, options);
    options.text = "<p>" + msg  + "</p>";*/
/*    myGrowl = Growl.Bezel(options);*/
	options = $merge({
	    title: '',
	    message: '',
	    width: 200,
        visibleTime: 2500,
        sticky: true
    }, options);
	options.message = "<p>" + msg  + "</p>";
    window.notimooManager.show(options);
}
