if (_component instanceof JComponent) {
JComponent component = (JComponent) _component;
component.setLocation(screenSize.width / 2 - w / 2, screenSize.height / 2 - h / 2);
component.setSize(w, h);
component.setOpaque(false);
component.show();
} else if (_component instanceof JFrame) {
JFrame component = (JFrame) _component;
component.setLocation(screenSize.width / 2 - w / 2, screenSize.height / 2 - h / 2);
component.setSize(w, h);
component.show();