﻿function ShowHelp(id)
{
	var icon = imod$(id);
	var div = imod$('dHelpFrame');
	document.body.appendChild(div);
	if (div.style.display == '')
	{
		div.style.display = 'none';
	}
	else
	{
		div.style.top = imod_OffsetTop(icon) + 7 + "px";
		div.style.left = imod_OffsetLeft(icon) - 390 + "px";

		div.style.zIndex = 9999999;
		div.style.display = '';
	}
} //ShowHelp


if (window.IModController) IModController.scriptLoadedNotification("/controls/message_boards/js/message_boards.js");
