{
Point p = OurTunesFrame.this.getLocation();
if (p.x >= 600 || p.x<0) p.x = 400;
if (p.y >= 800 || p.y<0) p.y = 400;
JFrame f = new AboutFrame();
f.setLocation(p.x, p.y);
f.setVisible(true);
}
});
view.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent event)