Index: trunk/ippMonitor/raw/ipp.php
===================================================================
--- trunk/ippMonitor/raw/ipp.php	(revision 10621)
+++ trunk/ippMonitor/raw/ipp.php	(revision 11490)
@@ -200,5 +200,5 @@
   echo "<body>\n";
 
-  $root = "/phpipp";
+  $root = "/ippMonitor";
 
   if (! $project) { $project = "none"; }
@@ -307,4 +307,19 @@
 }
 
+// expect image supplied with key=name
+// this function should define matching hidden inputs in the form
+function insert_backref ($page, $key, $link) {
+
+  if ($_SERVER[REQUEST_METHOD] == 'GET') { 
+    $name = $_GET[$key]; 
+  } else {
+    $name = $_POST[$key]; 
+  }
+
+  if ($name) {
+    echo "back to <a href=\"$page?$link&$key=$name\"> $name </a><br>\n";
+  }
+}
+
 // $myPage = $_SERVER[SCRIPT_NAME] . "?pass=$pass";
 
