#!/usr/bin/perl use CGI::Carp qw(fatalsToBrowser); require "./cookie.lib"; require "./common.cgi"; #&get_input; #print "Content-type: text/html\n\n"; #&get_files; #exit; print "Location: http://www.hindilyrix.com/cgi-bin/football-clipart\n\n"; exit; ######### Get files ####### sub get_files { $abs_dir = "/home/jokenfun/public_html/football-clipart"; print <<__END_OF_MESSAGE__; Football Clipart

Football Clipart



Collection of free football clipart - Welcome to jokenfun's free football clipart gallery. Here you will find collection of free football clipart, collected from various internet sites and newsgroups, with permissions. All these free football clipart are in public domain and can be freely used by anybody. Some of the free football clipart is there more than ones.
Please do not link directly to the individual free football clip art images, but link to this page.

Free football Clipart
  • Free Football Clipart
      __END_OF_MESSAGE__ print "
    • Football Clipart"; print "
        "; $total_files=0; opendir(DIR, "$abs_dir"); @files = readdir(DIR); closedir(DIR); $total_files = @files; print ""; foreach $file (@files) { unless(-d $file) { print "
      • $file
        \n"; } } print "
        "; print <<__END_OF_MESSAGE__;




hindi lyrics | Desktop Wallpapers | blonde jokes | poker rules

Copyright © 2000-2003 jokenfun.com, Inc. All rights reserved.
__END_OF_MESSAGE__ }