function goOn(linkNr){
location.href = "composite-"+links [linkNr]+".htm";
}

window.onresize = reSizeIndhold;

function reSizeIndhold(){

var topBundMM = 128;

var frameWidth = 0;
var frameHeight = 0;

	if (self.innerWidth)
	{
		frameWidth = self.innerWidth;
		frameHeight = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth)
	{
		frameWidth = document.documentElement.clientWidth;
		frameHeight = document.documentElement.clientHeight;
	}
	else if (document.body)
	{
		frameWidth = document.body.clientWidth;
		frameHeight = document.body.clientHeight;
	}
	
	var nyHojde = (frameHeight - topBundMM);
	if(nyHojde<0) nyHojde = 0;
	if(document.getElementById("indholdArea")){
	document.getElementById("indholdArea").style.height = nyHojde;
	}
}
