public AuctionControlGump(Mobile user, AuctionItem auction, AuctionViewGump view) : base(50, 50)
        {
            m_User    = user;
            m_Auction = auction;

            m_User.CloseGump(typeof(AuctionControlGump));

            view.X = 400;
            m_User.SendGump(view);

            MakeGump();
        }
		public AuctionControlGump( Mobile user, AuctionItem auction, AuctionViewGump view ) : base( 50, 50 )
		{
			m_User = user;
			m_Auction = auction;

			m_User.CloseGump( typeof( AuctionControlGump ) );

			view.X = 400;
			m_User.SendGump( view );

			MakeGump();
		}