function uebers (nr)
{
    var nr;
    var text;
    var obj = document.getElementById("kopf");

    if (nr == 0) {text = "WILLKOMMEN"; obj.src = "kopf.html";}
    if (nr == 11) {text = "VEREINE Jugend"; obj.src = "jugend/kopf.html";}
    if (nr == 12) {text = "ANSPRECHPARTNER Jugend"; obj.src = "jugend/kopf.html";}
    if (nr == 13) {text = "SPORTSTÄTTEN Jugend"; obj.src = "jugend/kopf.html";}
    if (nr == 14) {text = "TRAINER Jugend"; obj.src = "jugend/kopf.html";}
    if (nr == 15) {text = "TRAINING Jugend"; obj.src = "jugend/kopf.html";}
    if (nr == 16) {text = "MANNSCHAFTEN Jugend"; obj.src = "jugend/kopf.html";}
    if (nr == 17) {text = "SPIELPLAN Jugend"; obj.src = "jugend/kopf.html";}
    if (nr == 18) {text = "4. HANDBALL-CAMP / September 2010"; obj.src = "jugend/kopf.html";}
    if (nr == 19) {text = "5. HANDBALL-CAMP / September 2011"; obj.src = "jugend/kopf.html";}
    if (nr == 21) {text = "VEREINE Senioren"; obj.src = "senioren/kopf.html";}
    if (nr == 22) {text = "ANSPRECHPARTNER Senioren"; obj.src = "senioren/kopf.html";}
    if (nr == 23) {text = "SPORTSTÄTTEN Senioren"; obj.src = "senioren/kopf.html";}
    if (nr == 24) {text = "TRAINER Senioren"; obj.src = "senioren/kopf.html";}
    if (nr == 25) {text = "TRAINING Senioren"; obj.src = "senioren/kopf.html";}
    if (nr == 26) {text = "MANNSCHAFTEN Senioren"; obj.src = "senioren/kopf.html";}
    if (nr == 27) {text = "SPIELPLAN Senioren"; obj.src = "senioren/kopf.html";}
    if (nr == 99) {text = "IMPRESSUM"; obj.src = "kopf.html";}

    var tt = document.createTextNode(text);
    document.getElementById("titel").firstChild.deleteData(0,35);
    document.getElementById("titel").firstChild.appendData(tt.nodeValue);
}

function mailadr (name, domain, subject) {

        var subject;
        if (!subject) inhalt = ""
        else inhalt= '?subject=' + subject;
        location.href = 'mailto:'+ name + '@'+ domain + inhalt ;
}
