//Druckt Modul
function SS_PrintModule (iModuleIndexId, iAcSideId) {
	window.open ('ss_printmodule.php?iModuleIndexId='+iModuleIndexId+"&iAcSideId="+iAcSideId, 'fenster','toolbar=no');
	SS_AdminCloseSubMenu ();
}
	function SS_00004_ToggleGroupHover (cGroupId)
	{
		var oGroup = document.getElementById(cGroupId)
		if (oGroup.className.substr (oGroup.className.length - 3, oGroup.className.length) == "Out")
		{
			oGroup.className = oGroup.className.replace ("Out", "Hover");
		}
		else
		{
			oGroup.className = oGroup.className.replace ("Hover", "Out");
		}
	}
