diff --git a/src/net/java/sip/communicator/service/gui/CreateAccountWindow.java b/src/net/java/sip/communicator/service/gui/CreateAccountWindow.java
new file mode 100644
index 000000000..f972e0fc5
--- /dev/null
+++ b/src/net/java/sip/communicator/service/gui/CreateAccountWindow.java
@@ -0,0 +1,29 @@
+/*
+ * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
+ *
+ * Distributable under LGPL license.
+ * See terms of license at gnu.org.
+ */
+package net.java.sip.communicator.service.gui;
+
+/**
+ *
+ * @author Yana Stamcheva
+ */
+public interface CreateAccountWindow
+{
+ /**
+ * Shows or hides this create account window.
+ *
+ * @param visible true to show this window, false -
+ * otherwise
+ */
+ public void setVisible(boolean visible);
+
+ /**
+ * Sets the selected wizard.
+ *
+ * @param wizard the wizard to select
+ */
+ public void setSelectedWizard(AccountRegistrationWizard wizard);
+}