Index: trunk/www/dch/ratescan_plots.php
===================================================================
--- trunk/www/dch/ratescan_plots.php	(revision 18201)
+++ trunk/www/dch/ratescan_plots.php	(revision 18201)
@@ -0,0 +1,36 @@
+<html>
+<head>
+  <meta name="Author" content="Dominik Neise" />
+  <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='ratescan_plots.php' METHOD='GET'>\n";
+echo "quality plots for ";
+
+$date=GetDates($_GET["date"], "ratescan_plots");
+$date2=date("Ymd", strtotime($date));
+$path="../ratescan_plots/".date("Y/m/d", strtotime($date));
+
+echo "</form>\n";
+
+if (is_dir($path))
+{
+    echo "<table>\n";
+    echo "<tr>\n";
+    printf("<td><img src='%s/%s.png' alt='ratescan_plot'></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";
+?>
