function writeOverskrift()
{
var Modulnavn;
regx = /modul./i;
Sti = window.location.href;
Modulnavn = Sti.match(regx);


if (Modulnavn == "Modula")
{
    document.write('Obligatorisk modul A');
}
if (Modulnavn == "Modulb")
{
    document.write('Onligatorisk modul B');
}
if (Modulnavn == "Modulc")
{
    document.write('Obligatorisk modul C');
}
if (Modulnavn == "Modul1")
{
    document.write('Valgmodul 1');
}
if (Modulnavn == "Modul2")
{
    document.write('Valgmodul 2');
}
if (Modulnavn == "Modul3")
{
    document.write('Valgmodul 3');
}
if (Modulnavn == "Modul4")
{
    document.write('Valgmodul 4');
}
if (Modulnavn == "Modul5")
{
    document.write('Valgmodul 5');
}
if (Modulnavn == "Modul6")
{
    document.write('Valgmodul 6');
}
if (Modulnavn == "Modul7")
{
    document.write('Valgmodul 7');
}
if (Modulnavn == "Moduld")
{
    document.write('Obligatorisk modul D');
}


}



