in reply to how to print CGI header

Hi Anonymous Monk

Have a read at the CGI documentation, under the section titled CREATING THE HTML DOCUMENT HEADER:
print $q->start_html(-title=>'The Riddle of the Sphinx', -script=>{-language=>'JAVASCRIPT', -src=>'/javascript/sphinx.js'} );
This will not stop people who have their browsers setup not to execute JavaScript from doing a "Right click" -> "View Source", or using "View" -> "Page source" on the menu.

Martin