language = "en_US";
}
if (type.equals("tutorial"))
{
new HelpDialog(null, helpRoot+language+"/contain/tutorial.html", GT.get("JChemPaint Help")).setVisible(true);
}
else if (type.equals("rgpTutorial"))
{
new HelpDialog(null, helpRoot+language+"/contain/rgroup_tutorial.html", GT.get("JChemPaint Help")).setVisible(true);
}
else if (type.equals("feedback"))
{
new HelpDialog(null, helpRoot+language+"/contain/feedback.html", GT.get("JChemPaint Help")).setVisible(true);
}
else if (type.equals("license"))
{
new HelpDialog(null, helpRoot+language+"/license.html", GT.get("JChemPaint License")).setVisible(true);
}
else
{
new HelpDialog(null, helpRoot+language+"/jcp.html", GT.get("JChemPaint Help")).setVisible(true);
}
}