private void ReadFromWordButton_OnClick(object Sender, RoutedEventArgs E)
			{
			Lines = InputText.Text.Replace("\r\n", "^").Replace("\t", " ").Split('^');
			AlpenVereinWebDataView WebDataView = new AlpenVereinWebDataView();
			AVModell = WebDataView.AVModell;
			Cursor = Cursors.AppStarting;
			WebDataView.PrepareAllDataAndConnections(Lines);
			Cursor = Cursors.Arrow;
			WebDataView.ShowDialog();
			WebDataView.Close();
			}
		private void DownloadButton_OnClick (object Sender, RoutedEventArgs E)
			{
			AlpenVereinWebDataView WebDataView = new AlpenVereinWebDataView ();
			AVModell = WebDataView.AVModell;
			Cursor = Cursors.AppStarting;
			WebDataView.PrepareAllDataAndConnections ();
			Cursor = Cursors.Arrow;
			WebDataView.ShowDialog();
			WebDataView.Close ();
			}