/**
* Lädt das Navigationsframe neu
*
* @param string sPath Pfadangabe für den aktuellen Menupunkt
*/
function loadNavigation(sPath)
{
	if (sPath=='') return;
	
	sNewQuery = "?method=showNavigationFrame&path=" + sPath
	
	if (top.navigation.location.search != sNewQuery)
		if (top.navigation.location.replace)
			top.navigation.location.replace("/index.php" + sNewQuery);
			
} // Ende der Funktion: loadNavigation