2行程度のフレームって何だ?

#!perl
if ($ENV{PATH_INFO}){
  print "Content-type: text/plain\n\n";
  open (F,"/path/to/file");
  print <F>;
} else {
print<<EOS;
Content-type: text/html


<html>
<frameset rows="20,*">
  <frame src="2gyouteidonoframe.html" name="header">
  <frame src="ihate.cgi/mendoudana" name="content">
</framset>
</html>
EOS
}