function showIndex(menuNr) {

document.write("<div class='cssmenu'><a href='cognisoft-i.html'");
if (menuNr == 1) document.write(" id='current'");
document.write(">Brugervejledning<br></a>");

document.write("<a href='csi-krav.html'");
if (menuNr == 2) document.write(" id='current'");
document.write(">Systemkrav<br></a>");

document.write("<a href='csi-priser.html'");
if (menuNr == 3) document.write(" id='current'");
document.write(">Priser<br></a>");

document.write("<a href='csi-demo.html'");
if (menuNr == 4) document.write(" id='current'");
document.write(">Demo<br></a></div>");

}
