
function fancyAlert(onClosed){
        $("#fancyAlert").fancybox({
            'titlePosition':'inner',
            'onClosed': onClosed
        });
        jQuery(document).ready(function() {
            $("#fancyAlert").trigger('click');
        });
    }




