function Help(sHelpID)
{
	//Declare local variables
	var winHelp;	//Help window
	var url;		//URL to pick list window	
	var serverName; //Name of the server
	
	serverName = location.host.toUpperCase();
	
	switch(serverName)
	{
		case "ECYWBLCYADD02": //Development
		{
			serverName = "https://test-fortress.wa.gov/ecy";
			break;
		}
		case "LOCALHOST": //Development
		{
			serverName = "https://test-fortress.wa.gov/ecy";
			break;
		}
		case "ECYWBLCYADP01": //Production
		{
			serverName = "http://ecyapps4";
			break;
		}
		case "ECYAPPS3": //Production
		{
			serverName = "http://ecyapps4";
			break;
		}
		default: //FORTRESS (Internet)
		{
			serverName = "https://fortress.wa.gov/ecy";
			break;
		}
	}
	
	//Define the url to the help window
	url = serverName + "/ehs/Help.aspx?helpID=" + sHelpID + "&applicationNM=EIMReporting";
		
	//Open new help window
	winHelp = window.open(url, 'help_win', 'width=640px, height=480px, status=no, toolbar=no, help=no, menubar=no, overflow=no, scrollbars=yes');
	
	if(winHelp != null)
	{
		winHelp.focus();
	}
}