// Chamando o aviso
$script = new TElement('script');
$script->type = 'text/javascript';
$script->add('$.blockUI({ message: "", fadeIn: 0, fadeOut: 0, css: { border: "none", top: "100px", left: 0, maxWidth: "300px", width: "inherit", padding: "15px", backgroundColor: "#000", "border-radius": "5px 5px 5px 5px", opacity: .5, color: "#fff" } });');
parent::add($script);
// Removendo o aviso
$script = new TElement('script');
$script->type = 'text/javascript';
$script->add('$.unblockUI();');
parent::add($script);