if(!BioNamespace) var BioNamespace = {};
if(!BioNamespace.General) BioNamespace.General = {};

if(!BioNamespace.General.Help)
{
	BioNamespace.General.Help = function()
	{
		function Open(helpID)
		{
			var win = window.open('index.php?action=help_manager&is_popup=1&helpID=' + encodeURIComponent(helpID), 'helpWin' + helpID, 'height=500,width=600,scrollbars=1,resizable=1,top=200, left=300');
			win.focus();
		}

		function OpenSummary()
		{
			var win = window.open('index.php?action=help_manager&type=helpSummary&is_popup=1', 'helpSummaryWin', 'height=500,width=600,scrollbars=1,resizable=1,top=150, left=250');
			win.focus();
		}

		var public = {
			Open: Open,
			OpenSummary: OpenSummary
		}

		return public;
	}();
}