﻿
function sendform(email, titel) {
    if (typeof(titel) != "undefined") email = email + "&title=" + titel;
    window.open("/PageMitglieder/Mail.aspx?id=" + email, "", "menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=yes,width=550,height=275");
}

function sendformClub() {
    sendform("info", "Kontakt");
}

function sendformAlle() {
    sendform("alle", "Rundmail");
}

