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

if (Modulnavn == "Modula")
{
    document.write('Modul A');
}
if (Modulnavn == "Modulb")
{
    document.write('Modul B');
}
if (Modulnavn == "Modulc")
{
    document.write('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 == "Modul8")
{
    document.write('Valgmodul 8');
}
if (Modulnavn == "Modul9")
{
    document.write('Valgmodul 9');
}
if (Modulnavn == "Modul10")
{
    document.write('Valgmodul 10');
}
if (Modulnavn == "Modul11")
{
    document.write('Valgmodul 11');
}
if (Modulnavn == "Modul12")
{
    document.write('Valgmodul 12');
}
if (Modulnavn == "Modulh")
{
    document.write('Modul H');
}

}



