public UniversalRenamerGump(PlayerMobile from, UniversalRenamer pen) : base(50, 50)
        {
            m_From = from;
            m_Pen  = pen;

            this.Closable   = true;
            this.Disposable = true;
            this.Dragable   = true;
            this.Resizable  = false;
            this.AddPage(0);
            this.AddBackground(50, 50, 250, 215, 2620);
            this.AddLabel(114, 67, 1160, "Item Name Selection");
            //this.AddLabel(114, 96, 1160, "Choose your Name");
            this.AddLabel(84, 156, 1152, "NAME = ");
            this.AddTextEntry(134, 156, 150, 20, 1359, 0, m_Pen.penName);
            this.AddButton(200, 221, 238, 240, 4, GumpButtonType.Reply, 0);

            this.AddLabel(60, 200, 1152, "* Universal Renamer By - Doobs. *");
        }
		public UniversalRenamerGump( PlayerMobile from, UniversalRenamer pen ): base( 50, 50 )
		{
			m_From = from;
			m_Pen = pen;
			
			this.Closable=true;
			this.Disposable=true;
			this.Dragable=true;
			this.Resizable=false;
			this.AddPage(0);
			this.AddBackground(50, 50, 250, 215, 2620);
			this.AddLabel(114, 67, 1160, "Item Name Selection");
			//this.AddLabel(114, 96, 1160, "Choose your Name");
			this.AddLabel(84, 156, 1152, "NAME = ");
			this.AddTextEntry(134, 156, 150, 20, 1359, 0, m_Pen.penName );
			this.AddButton(200, 221, 238, 240, 4, GumpButtonType.Reply, 0);
			
			this.AddLabel(60, 200, 1152, "* Universal Renamer By - Doobs. *");

		}
 public UnivPenTarget(Item item) : base(12, false, TargetFlags.None)
 {
     m_Item = (UniversalRenamer)item;
 }
 public UnivPenTarget( Item item ) : base( 12, false, TargetFlags.None )
 {
        m_Item = (UniversalRenamer) item;
 }