/// <summary>
		///		Erforderliche Methode für die Designerunterstützung
		///		Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
		/// </summary>
		private void InitializeComponent()
		{
			this.LinksGrid.CancelCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.LinksGrid_CancelCommand);
			this.LinksGrid.EditCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.LinksGrid_EditCommand);
			this.LinksGrid.UpdateCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.LinksGrid_UpdateCommand);
			this.LinksGrid.DeleteCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.LinksGrid_DeleteCommand);

			CheckBoxColumn col = new CheckBoxColumn();
			col.HeaderText = Portal.API.Language.GetText(Portal.API.Module.GetModuleControl(this), "NewWindow");
			col.DataField = "OpenInNewWindow";
			col.HeaderStyle.Width = new Unit("100px");
			col.ItemStyle.HorizontalAlign = HorizontalAlign.Center;
			LinksGrid.Columns.Add(col);
		}