function setEnterPage()
{
	if (this == top)
	{
		setCookie("EnterPage",document.URL);
//		top.location.href="index.htm"
	}
}

function loadFrame()
{
	if (getCookie("EnterPage")==null)
	{
		parent.basefrm.location.href='start.htm'
	}
	else
	{
		parent.basefrm.location.href=getCookie("EnterPage")
	}
}


function topload()
{
	// Ladda index.htm så att man får med allt. Det skall inte gå att ladda den här sidan enbart.
	if (this == top) top.location.href="index.htm";
}