Index: trunk/www/dch/quality.php
===================================================================
--- trunk/www/dch/quality.php	(revision 17533)
+++ trunk/www/dch/quality.php	(revision 17533)
@@ -0,0 +1,38 @@
+<html>
+<head>
+  <meta name="Author" content="Daniela Dorner" />
+  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+  <title>FACT Project</title>
+  <link rel="StyleSheet" type="text/css" href="../style.css" />
+</head>
+<?php
+
+include ("dates.php");
+
+echo "<body>\n";
+echo "<form name='formular' action='quality.php' METHOD='GET'>\n";
+echo "quality plots for ";
+
+$date=GetDates($_GET["date"], "quality");
+$date2=date("Ymd", strtotime($date));
+$path="../quality/".date("Y/m/d", strtotime($date));
+
+echo "</form>\n";
+
+if (is_dir($path))
+{
+    //printf("<a href='%s'>more files</a>\n",$path);
+    echo "<table>\n";
+    echo "<tr>\n";
+    printf("<td><img src='%s/%s-quality.png' alt='quality'></td>\n", $path, $date2);
+    echo "</tr>\n";
+    echo "<tr>\n";
+    echo "</table>\n";
+}
+else
+    echo "No files available for ".$date.".\n";
+
+
+echo "</body>\n";
+echo "</html>\n";
+?>
