* @param args the command line arguments
*/
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
mainForm mainWindow = new mainForm();
mainWindow.setVisible(true);
} catch (Exception ex) {
JOptionPane.showMessageDialog(null,
"This system does not support your Operating System! Exiting now",
"WinSIS", JOptionPane.ERROR_MESSAGE);
System.exit(1);