function loadMailman(mailmanHTML)
{
    var panel =
            new YAHOO.widget.Panel("panel",
                {   visible:false,
                    fixedcenter:true,
                    draggable:false,
                    constraintoviewport:true,
                    modal:true,
                    close:true,
                    effect:{effect:YAHOO.widget.ContainerEffect.FADE, duration:0.2}
                });
    panel.setHeader("<h3 style='padding: 0 0 0 0; margin: 0 0 0 0'>Subscription Results</h3>");
    panel.setBody(mailmanHTML);
    panel.setFooter("");
    panel.render(document.body);
    panel.show();
}
function loadMailmanUnsubscribe(mailmanHTML)
{
    var panel =
            new YAHOO.widget.Panel("panel",
                {   visible:false,
                    fixedcenter:true,
                    draggable:false,
                    constraintoviewport:true,
                    modal:true,
                    close:true,
                    effect:{effect:YAHOO.widget.ContainerEffect.FADE, duration:0.2}
                });
    panel.setHeader("<h3 style='padding: 0 0 0 0; margin: 0 0 0 0'>Unsubscribe Results</h3>");
    panel.setBody("A mailing list removal confirmation notice has been<br />sent to your email address. Please check your email and<br />and follow the instructions provided. If you are having<br />trouble unsubscribing or if you have any other questions,<br />send them to macfarlanenews-owner@macfarlaneparkpta.org.");
    panel.setFooter("");
    panel.render(document.body);
    panel.show();
        return true;
}

