Index: Evidence/Edd/Edd.cc
===================================================================
--- Evidence/Edd/Edd.cc	(revision 270)
+++ Evidence/Edd/Edd.cc	(revision 274)
@@ -1302,6 +1302,25 @@
 TP_DAQ::TP_DAQ() {
 
+  EddLineDisplay *Line;
+
   setAttribute(Qt::WA_DeleteOnClose);
   QGridLayout *Layout = new QGridLayout(this);
+
+  // Run-related information 
+  Line = new EddLineDisplay("drsdaq/RunNumber");
+  Line->setMaximumWidth(100);
+  Layout->addWidget(Line, 0, 1, 1, 1);      
+  Line = new EddLineDisplay("drsdaq/EventNumber");
+  Line->setMaximumWidth(100);
+  Layout->addWidget(Line, 0, 2, 1, 1);      
+  Line = new EddLineDisplay("drsdaq/RunSizeMB");
+  Line->setMaximumWidth(100);
+  Layout->addWidget(Line, 0, 3, 1, 1);      
+  Line = new EddLineDisplay("drsdaq/FileSizeMB");
+  Line->setMaximumWidth(100);
+  Layout->addWidget(Line, 0, 4, 1, 1);      
+  Line = new EddLineDisplay("drsdaq/FileName");
+  Line->setMaximumWidth(200);
+  Layout->addWidget(Line, 0, 5, 1, 1);      
 
   // Event scope
@@ -1320,5 +1339,5 @@
   TabWidget->addTab(RunHeaderDisplay, "&Run Header");
   TabWidget->addTab(EventHeaderDisplay, "&Event Header");
-  Layout->addWidget(TabWidget, 0, 1, 5, 3);
+  Layout->addWidget(TabWidget, 1, 1, 5, 5);
 
   connect(Scope, SIGNAL(RunHeaderChanged(QString)), RunHeaderDisplay, SLOT(setPlainText(QString)));
@@ -1366,4 +1385,5 @@
   PixDisplay->setFont(QFont("Times", 10, QFont::Bold));
   PixDisplay->setToolTip("Show event display window");
+  PixDisplay->setMaximumWidth(80);
   Layout->addWidget(PixDisplay, 4, 0);
   connect(PixDisplay, SIGNAL(clicked()), SLOT(ShowPixelDisplay()));
@@ -1386,5 +1406,5 @@
     Pixel[Count] = new QPushButton(Display);
 	Pixel[Count]->setAutoFillBackground(true);
-	Pixel[Count]->setGeometry(x*12.5 + 250, y*12.5 + 250, 10, 10);
+	Pixel[Count]->setGeometry((int) (x*12.5 + 250), (int) (y*12.5 + 250), 10, 10);
 	Pixel[Count]->show();
 	Count++;
@@ -1491,4 +1511,9 @@
 
   QPushButton *Button = new QPushButton();
+  Button->setText("eLogBook");
+  connect(Button, SIGNAL(released()), SLOT(StartELog()));
+  Layout->addWidget(Button, 6, 1, 1, 1);
+
+  Button = new QPushButton();
   Button->setText("Start DIM browser");
   connect(Button, SIGNAL(released()), SLOT(StartDIMBrowser()));
@@ -1503,4 +1528,10 @@
 
   QProcess::startDetached("did", QStringList(), QString(getenv("DIMDIR"))+"/linux/");
+}
+
+// Start eLogBook
+void TP_Evidence::StartELog() {
+
+  QProcess::startDetached("firefox http://fact.ethz.ch/FACTelog/index.jsp");
 }
 
Index: Evidence/Edd/Edd.h
===================================================================
--- Evidence/Edd/Edd.h	(revision 270)
+++ Evidence/Edd/Edd.h	(revision 274)
@@ -352,4 +352,5 @@
   private slots:
 	void StartDIMBrowser();
+	void StartELog();
 
   public:
