* Constructs the dialog for the given ownwer and path to the tip index file.
*/
public CustomTipOfTheDayDialog(Frame owner, String tipIndexPath)
{
super(owner, Strings.message("ui.tip.of.the.day"));
tipIndexModel = new PreferencesAdapter(Application.getUserPreferences(),
TIP_INDEX_KEY,
TIP_INDEX_DEFAULT);
readTipPaths(tipIndexPath);
}