* The main routine where all begins
* @param args the command line arguments
*/
public static void main(String[] args)
{
MainWindow main_window = new MainWindow();
SplashScreen splash_screen = new SplashScreen( main_window, 0 );
main_window.drawIt( splash_screen );
main_window.setVisible(true);
splash_screen.setVisible( false );
splash_screen.dispose();
}