#! \usr\bin\perl

use CGI;
$cgi=CGI::new();

print $cgi->header();
print $cgi->start_html();
 print "Thanks";
print $cgi->end_html();

