function Help(where)
{
	var url;
	var here=String(window.location.pathname);
	if (here.indexOf("/cgi-bin/user/") >= 0)
	{	
		url="/cgi-bin/user/help?Section="+where;
	}
	else
	{
		url="/cgi-bin/help?Section="+where;
	}
	if (here.indexOf("/help") != here.length - 5)
	{
		Help_window = window.open("","Help_window","toolbar=no,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,height=300,width=300");
		Help_window.document.write(
			"<html>\n"+
			"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />"+
			"<head>\n"+
			"<title>\n"+
			"  Kempton Project Help -- Loading...\n"+
			"</title>\n"+
			"<link href=\"/styles/Help.css\" rel=\"stylesheet\" type=\"text/css\">\n"+
			"<link rel=\"icon\" href=\"/eagle16.png\" type=\"image/png\">\n"+
			"<script language=\"JavaScript\" src=\"/scripts/Help.js\"></script>\n"+
			"</head>\n"+
			"<body class=\"Help\">\n"+
			"<table width=\"100%\">\n"+
			"  <tr>\n"+
			"    <td><img src=\"/images/bighelp.png\" id=\"bighelp\" /></td>\n"+
			"    <th>Loading help ...</th>\n"+
			"    <td align=\"right\"><button onclick=\"window.close();\">Close</button></td>\n"+
			"  </tr>\n"+
			"</table>\n"+
			"</body>\n"+
			"</html>\n"
		);
		Help_window.document.close();
		Help_window.document.location = url;
		Help_window.focus();
	}
	else
	{
		document.body.innerHTML =
			"<table width=\"100%\">\n"+
			"  <tr>\n"+
			"    <td><img src=\"/images/bighelp.png\" id=\"bighelp\" /></td>\n"+
			"    <th>Loading help ...</th>\n"+
			"    <td align=\"right\"><button onclick=\"window.close();\">Close</button></td>\n"+
			"  </tr>\n"+
			"</table>\n"
		;
		document.location = url;
	}
}

