<!--

	if ((navigator.userAgent.indexOf("Mac") != -1)) 
			document.write("<link rel='stylesheet' href='css/forside_mac.css'>") 
	if (navigator.userAgent.indexOf('Win') != -1){ 
			if (navigator.appName.indexOf('Netscape') != -1) {
				document.write("<link rel='stylesheet' href='css/forside_pc_nav.css'>")
				}
				else {document.write("<link rel='stylesheet' href='css/forside_pc_ie.css'>")
				}
			}

//-->

<!-- skjul indhold for gamle browsere

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
        if (browserName == "Microsoft Internet Explorer" && browserVer >=4) version= "n3"
        else if (browserName == "Netscape" && browserVer >= 3) version = "n3"
        else if (browserName == "Netscape" && browserVer == 2) version = "n2"
        else  version="2";
     
if (version == "n3")
{

load_toc ('front01', 71, 94);
load_toc ('front02', 80, 16);
load_toc ('front03', 83, 16);
load_toc ('front04', 116, 16);
load_toc ('front05', 111, 16);
load_toc ('front06', 111, 16);
}

function tocItem (name, height, width)
{
	if (version == "n3")
	{
	this.on = new Image (height, width);
	this.on.src = "images/dk/" + name + "on.gif"
	this.off = new Image (height, width);
	this.off.src = "images/dk/" + name + "off.gif"
	}
}

function toc_new (name, height, width)
{
	if (version == "n3")
	{
	tocItem [name] = new tocItem (name, height, width);
	}
}

function img_act (imgName)
{
	if (version == "n3")
        {
	document [imgName].src = tocItem [imgName].on.src;
	}
}

function img_inact (imgName)
{
	if (version == "n3")
	{
        document [imgName].src = tocItem [imgName].off.src;
	}
}

function load_toc (name, width, height)
{
	if (version == "n3")
	{        
	toc_new (name, width, height);
	}
}

// end gem indhold for gamle browsere -->