Sometimes things work exactly opposite as you think they would. Here's
a good example.
When trying to include a call to a cgi script via SSI the following
difference between Netscape 3.6 and Apache web servers crops up.
In Netscape, CGIs can only be processed via the "exec command".
Therefore, the correct format for the Netscape webserver is the
following:
<!--#exec cgi="/cgi-bin/techadv/techPromo.cgi?id=proj&level=0" -->
However, it is the opposite method for Apache webservers. Apache
webservers uses the following format:
<!--#include virtual="/cgi-bin/techadv/techPromo.cgi?id=proj&level=0"
-->
Thanks to Patrice Jones for her help.