<!--
function buildArray() 
{
  var a = buildArray.arguments;
  for (i=0; i<a.length; i++) 
  {
    this[i] = a[i];
  }
  this.length = a.length;
}

var urls1 = new buildArray("",
"introduktion.html"," Introduktion ",
"index.html#oversigt"," Oversigt ",
"ordliste.html"," Ordliste ",
"tal.html"," Tal ",
"pct.html"," Procentregning ",
"rente.html"," Rentesregning ",
"ligninger.html"," Ligninger og uligheder ",
"funktioner.html"," Funktioner ",
"diff.html"," Differentialregning ",
"geometri.html"," Geometri ",
"statistik.html"," Statistik ",
"sandsyn.html"," Sandsynlighedsregning ",
"essays.html"," Matematiske essays ",
"studygui.html"," Studyguide til MatC ",
"faq.html"," FAQ ",
"links.html"," LINK-samling ");

function skrivmenu()
{
	a=document.location.href.lastIndexOf('/');
	b=document.location.href.length;
	filnavn=document.location.href.substring(a+1,b);
	document.writeln("<table border='0' cellpadding='2' cellspacing='1' class='navigering'>");
	document.writeln("<tr><td>");
	document.writeln("<p style='color:navy;font-weight:bold;font-family:verdana'><a name='menu'>Hovedmenu</a></p>");
	document.writeln("<\/td></tr><tr><td>");
	for (i=2;i<urls1.length;i=i+2)
	{
		if (eval("urls1[i-1]").toUpperCase()==filnavn.toUpperCase())
		{
			document.writeln(" <B>|<a href='" + eval("urls1[i-1]") + "'>" + eval("urls1[i]") + "<\/a>|</B> ");
		}
		else
		{
			document.writeln(" <B>[]<a href='" + eval("urls1[i-1]") + "'>" + eval("urls1[i]") + "<\/a></B> ");
		}
	}
	document.writeln("<B>I</B>");
	document.writeln("<\/td><\/tr><\/table>");
}

// -->
