//F5-Componente
(function($) {

    //Confirmar
    $.Modal = function(id, options) {
        options = options || {};
        $(id).dialog({
            resizable: options.resizable || false,
            height: options.height || 400,
            width: options.width || 550,
            modal: options.modal || true
        });
    }

})(jQuery);
