Ah....this won't work because you're onLoad'ing daForm before you've named
the form "daForm" plus the <INPUT TYPE=FILE...> line won't take a VALUE
attribute.
        I've been hackin' at this, but I can't get it either.  I can "see" the
value attribute being set but I don't think it's possible to change it with
Javascript.  We're probably barking up the wrong tree.  Anyway, take a look
at the code below.  Perhaps someone can take it from here:
And send.cgi is...
#!/usr/bin/perl
# Header
print "Context-type: text/html\n\n";
print "<H2>YOUR FILE</H2>";
print "<PRE>";
while (<STDIN>) {
  $FILETEXT .= $_;
  print;
  }
print "</PRE>";
# Save the file to your server as well
open(SOMEFILE, "> /tmp/fromweb");
print SOMEFILE $FILETEXT;
close(SOMEFILE);
--- micah brandon@vv.com