--- loncom/homework/edit.pm	2001/05/15 20:48:43	1.7
+++ loncom/homework/edit.pm	2001/05/31 22:37:56	1.8
@@ -14,14 +14,11 @@ sub tag_start {
 #    my $color = sprintf("#%06lx",(hex("ffffff")) >> scalar(split(/_/,$Apache::lonxml::curdepth)));
     my $color = sprintf("#%02lxffff",33* scalar(split(/_/,$Apache::lonxml::curdepth)));
     $result.="<table bgcolor=\"$color\" width=\"100%\" border=\"2\"><tr><td>&lt;$tag&gt;</td>
-<td>Delete:
-<select name=\"delete_$Apache::lonxml::curdepth\">
-<option>Nothing</option>
-<option>Tag</option>
-<option>Subtags</option>
-</select></td>
+<td>Delete:".
+  &deletelist($target,$token)
+  ."</td>
 <td>".
-  &insertlist($token,$target).
+  &insertlist($target,$token).
     "</td>
 </tr><tr><td colspan=\"3\">\n";
   }
@@ -38,6 +35,16 @@ sub tag_end {
   return $result;
 }
 
+sub deletelist {
+  my ($target,$token) = @_;
+  my $result = "<select name=\"delete_$Apache::lonxml::curdepth\">
+<option>Nothing</option>
+<option>Tag</option>
+<option>Subtags</option>
+</select>";
+  return $result;
+}
+
 sub get_insert_list {
   my ($token) = @_;
   my $result='';
@@ -63,7 +70,7 @@ sub get_insert_list {
 }
 
 sub insertlist {
-  my ($token,$target) = @_;
+  my ($target,$token) = @_;
   my $result;
   if ($target eq 'edit') {
     my $optionlist= &get_insert_list($token);