{
Frame F = new Frame();
String title = getArg(0).toUnquoted();
int x = (int) ((Int) getArg(1)).getValue();
int y = (int) ((Int) getArg(2)).getValue();
JinniDialog D = new JinniDialog(F, title, this, x, y);
D.show();
D.waitAction();
F.dispose();
if (null == answer)
{
return 0;
}