}
public static String icon(WebSite webSite, Path pagePath,
String argument, UserInfo userInfo, String anchor, boolean grayIcon) {
String lang = getHelpLang(webSite, userInfo);
Path adminPath = webSite.getLink(webSite.getAdminPath(), pagePath);
// grayIcon currently ignored
return "<img src='" + adminPath.add("filemanager/images/",
grayIcon ? "help.png" : "help.png") + "' title='Help: " + argument +
"' alt='Help Icon' onclick=\"javascript:window.open('" +
adminPath.add("help", lang).add(args.getProperty(argument, "index.html")) +
(Utils.isNullOrEmpty(anchor) ? "" : "#" + anchor) +
"', 'meshcmshelp', 'width=740,height=560,menubar=no,status=yes,toolbar=no,resizable=yes,scrollbars=yes').focus();\" />";
}