    $(function(){
        $("a.iflr").click(function(){
            $("#dialog").empty().append("<img src='/components/catalog/images/wait.gif' alt='wait'/>");
            $("#dialog").dialog('destroy').dialog({
                width: 600,
                maxWidth: 600,
                height: 500,
                maxHeight: 500,
                title: 'Регистрация',
                modal: true
            });
            
            $.get('/dialogRegister/',function(data){
                $("#dialog").empty().append(data);
                RecaptchaSetText();
            });
            return false;
        });
    })
