<!--
function mainInit(thePage)
{
	setNavi(thePage);
	checkForFrame();
}

function setNavi(theNavi)
{
	if(parent)
	{
		if(parent.bottomFrame)
		{
			if(parent.bottomFrame.document.title)
			{
				parent.bottomFrame.setActiveNavi(theNavi);
				parent.bottomFrame.focus();
			}	
		}
	}
}

function checkForFrame()
{
	
	if(!top.splashFrame && top.frames.length!=7)
	{
		top.location = "index.html";
	}
}
//-->
