# ver. 2001-07-14 ###################################################################### ################### Display HTML header ##################### ###################################################################### sub print_header { my ($title) = @_; print "Content-TYPE: text/html\n\n"; print <<"_header_"; $title _header_ } ###################################################################### ################### Display HTML footer ##################### ###################################################################### sub print_footer { print <<"_footer_";
   fantomas $script_name $vers 
Click here for online help! $script_name 
$script_sub_name 
© 1999-2001 by fantomaster.com. All rights reserved.
fantomas $script_name is the protected trade mark of fantomaster.com.
Support: techsupport@fantomaster.com
_footer_ } ###################################################################### 1;