public NPCGuildOption( ExtEventMoongate gate )
		{
			m_Gate = gate;
		}
		public NotoOption( ExtEventMoongate gate )
		{
			m_Gate = gate;
		}
			public DelayTimer( Mobile from, ExtEventMoongate gate, int range ) : base( gate.Delay )
			{
				m_From = from;
				m_Gate = gate;
				m_Range = range;
			}
		public EGateConfirmGump( Mobile from, ExtEventMoongate gate ) : base( 20, 30 )
		{
			m_From = from;
			m_Gate = gate;

			AddPage(0);

			AddBackground(0, 0, 275, 240, 5054);
			AddBackground(10, 10, 255, 220, 3000);

			AddLabel(30, 20, 909, "You entered a magical moongate");

			AddHtml(20, 60, 250, 100, String.Format( "<BASEFONT COLOR=#2F4F4F>{0}</BASEFONT>", m_Gate.Confirmation ), false, false);

			AddLabel(20, 165, 909, "Are you willing to proceed?");

			AddLabel(85, 202, 909, "Yes");
			AddButton(50, 200, 4005, 4007, 1, GumpButtonType.Reply, 0);

			AddLabel(205, 202, 909, "No");
			AddButton(170, 200, 4005, 4007, 0, GumpButtonType.Reply, 0);

		}
		public FactionOption( ExtEventMoongate gate )
		{
			m_Gate = gate;
		}