$(document).ready(function() {
    $('.contact_link').click(function() {
        var email_to_contact = $(this).attr('rel');
        var dialog_title = $(this).html();
        $.get("index.php", { mod:"mailer", mode:"contact", modal:"1", contact:email_to_contact}, function(dat, statusText, xhr) {
            var $dialog = $('<div></div>')
                .html(dat)
                .dialog({
                    autoOpen: false,
                    title: dialog_title,
                    closeOnEscape: true,
                    modal: true,
                    height: 390,
                    width:515
                });
                $dialog.dialog('open');
            });
        return false;
    });
    $('.recall_link').click(function() {
        var dialog_title = $(this).html();
        $.get("index.php", { mod:"mailer", mode:"recall", modal:"1"}, function(dat, statusText, xhr) {
            var $dialog = $('<div></div>')
                .html(dat)
                .dialog({
                    autoOpen: false,
                    title: dialog_title,
                    closeOnEscape: true,
                    modal: true,
                    height: 390,
                    width:515
                });
                $dialog.dialog('open');
            });
        return false;
    });
});
