﻿//var _helpPanels			= null;		// The help panels array (contains each control's ID).
//var _helpPanelsCount	= 0;		// The number of help panels.
var _showHelpPanels		= false;		// The current state of whether the help panels are displayed or not.


function Help_Init(showHelp)
{
	_showHelpPanels = showHelp;
	if(!showHelp)
		Help_Hide();
		//$("div.HelpPanelStatic").toggle();
}

//
//	Sets the display of all the help panels.
//
function Help_Toggle()
{
	_showHelpPanels = !_showHelpPanels;
	$("div.HelpPanelStatic").toggle("blind", { direction: "vertical" }, 500);
}

function Help_Hide()
{
	$("div.HelpPanelStatic").hide(0);
}

function Help_IsEnabled()
{
	return _showHelpPanels;
}