/******************************************************************

Copyright © Global Knowledge Software LLC 2006.  All Rights Reserved.

This program is protected by U.S. and International Copyright and
Patent Laws.  Unauthorized duplication and/or distribution of this
program is strictly prohibited. Distribution and duplication of this
program are limited by license. If you do not currently have a valid
license from Global Knowledge for this program, any copying or
distribution of the program is unauthorized.  If you do have a current
license from Global Knowledge to utilize this program, your use is
strictly limited by the terms of that license.

Patent Pending.

******************************************************************/

function OpenHelp(url,fatplayer)
{
	if (fatplayer)
	{
		FatPlayerCommand("Help");
	}
	else
	{
		_left=screen.availWidth/17;
		_top=_left;
		_height=screen.availHeight-3*_top;
		if (_height>500)
			_height=500;
		_width=_height*4.5/3;

		var strFeatures = "width="+_width+",height="+_height+",left="+_left+",top="+_top + 
				",resizable=1,toolbar=1,scrollbars=1,location=0,menubar=0";
		window.open(url, "", strFeatures)
	}
};
