public void startup(Display display, Map<String, String> properties)
throws Exception {
frame1 = new Frame();
frame1.setTitle("Panorama Test 1");
Panorama panorama = new Panorama();
frame1.setContent(panorama);
frame1.setPreferredSize(240, 320);
ImageView imageView = new ImageView();
imageView.setImage(getClass().getResource("IMG_0767_2.jpg"));
panorama.setView(imageView);
frame1.open(display);
WTKXSerializer wtkxSerializer = new WTKXSerializer();
frame2 = new Frame((Component)wtkxSerializer.readObject(getClass().getResource("panorama_test.wtkx")));
frame2.setTitle("Panorama Test 2");