function standardPositionOuterTable() {
	window.scrollTo(0,0);
	return;
	iViewportHeight	= document.viewport.getHeight();
	iViewportWidth	= document.viewport.getWidth();
	if(document.getElementById('contentArea'))
		document.getElementById('contentArea').style.height				= (iViewportHeight - 10) + "px";
	if(document.getElementById('contentContainerWindow'))
		document.getElementById('contentContainerWindow').style.height	= (iViewportHeight - 58) + "px";
	if(document.getElementById('contentContainer'))
		document.getElementById('contentContainer').style.width			= (iViewportWidth - 396) + "px";
}

function standardOpenNavigation(sIndexId, iLevelId) {
	// Um mehrere ineinandergeschachtelte Levels zu unterstuetzen
	// wird iLevelId verwendet
	if(typeof(iLevelId) == "undefined") var iLevelId = 0;
	if(aLastNavigationIndex[iLevelId] && aLastNavigationIndex[iLevelId] != '')
		coreUndisplay(aLastNavigationIndex[iLevelId]);
	aLastNavigationIndex[iLevelId]	= sIndexId;
	coreToggleDisplay(sIndexId, 'inline');
}
