I have my "main" form which has a menu. When the user clicks Options on the menu, I'd like to display a new form -- for, you guessed it, the user to change options

. The code for the menu is:
Code:
menu.add(new MenuItem("Options" , 100, 10)
{
public void run()
{
Dialog.alert("OPTIONS");
}
}); I'm guessing I need to replace the
Dialog.alert("OPTIONS"); with something, but I'm not sure what.