Index: /trunk/pstamp/web/request.php
===================================================================
--- /trunk/pstamp/web/request.php	(revision 18237)
+++ /trunk/pstamp/web/request.php	(revision 18238)
@@ -41,5 +41,5 @@
 
 // Initialize the request variables that we depend upon
-$rvar_project="gpc1";
+$rvar_project="simtest";
 
 $rvar_user_tag="";
@@ -231,9 +231,11 @@
     $cmd .= " -project $rvar_project";
 
-    if ($making_stamps) {
-        if (!$rvar_user_tag) {
+    if (!$rvar_user_tag) {
+        if ($making_stamps) {
             throw new Exception('Stamp Name must be specified.');
         }
-        $cmd .= " -user_tag $rvar_user_tag";
+        $cmd .= " -stamp_name temp_tag";
+    } else {
+        $cmd .= " -stamp_name $rvar_user_tag";
     }
 
@@ -292,5 +294,9 @@
             throw new Exception("must specify Class ID with Image Type $rvar_img_type.");
         }
-        $cmd .= " $rvar_class_id";
+        if ($rvar_class_id = "all") {
+            $cmd .= " null";
+        } else {
+            $cmd .= " $rvar_class_id";
+        }
     }
 
@@ -488,5 +494,6 @@
     <tr><td><b>Project:</b>&nbsp;&nbsp;&nbsp;</td>
         <td><select name="project">
-            <option>gpc1
+<!--            <option>gpc1 -->
+            <option>simtest
         </td>
     </tr>
@@ -667,5 +674,6 @@
 <?php 
   else: ?>
-    <td><input type=submit value="Get Status"></td>
+    <td><input type=submit value="Check Status"></td>
+<!---    <td><input type=submit value="Cancel"></td> --->
 <?php
   echo "<td><b>Request Id: $request_id";
