        $(function() {
            function launch() {
                 $('#popup1').lightbox_me({centered: true, onLoad: function() { $('popbtn1').find('input:first').focus()}});
            }
            
            $('#popbtn1').click(function() {
                $("#loader").lightbox_me({centered: true});
                setTimeout(launch, 10);
                return false;
            });


            function launch() {
                 $('#popup2').lightbox_me({centered: true, onLoad: function() { $('popbtn2').find('input:first').focus()}});
            }
            
            $('.popbtn2').click(function() {
                $("#loader").lightbox_me({centered: true});
                setTimeout(launch, 10);
                return false;
            });


        });
