Sorry Matt,
I clicked on the tab key by accident. Here is the rest of the information you need about the toolkit.
Toolkit tk = Toolkit.getDefaultToolkit(); //Creates an
//instance of the toolkit called tk.
Dimension d = tk.getScreenSize(); //Determines the
//screen size, and puts the value in d.
//once the screen size has been determined by the above
//lines of code it is simply a matter of using setBounds,
//setSize or setLocation.
To put the frame at a particular location simply do this, following on from above.
setLocation(d.width/4,d.height/4);
Of course d.width and d.height can be devided by any whole number, but if this is not good enough simply multiply by a fraction.
e.g.: d.width * 234/1356
The example is pretty extreme but it does demonstrate that any fraction is acceptable.
Happy hunting.
Regards
D