<!-- Säkerställer att sidan öppnas i framesetet -->


if (parent.location.href == self.location.href)
	{
	window.location.href = "index.htm";
	}




<!-- Tar bort länkmarkeringar i InternetExplorer -->


function fixUglyIE()
	{
	for (a in document.links) document.links[a].onfocus = document.links[a].blur;
	}
if (document.all)
	{
	document.onmousedown = fixUglyIE;
	}


