#!/usr/bin/perl

# quick and dirty script to advertise forum closure
# 2-14-2007

# All we need to do is redirect to index.html

  print "Location: http://www.tomorrowlands.org/forum/index.html\n\n";

  # CANNOT pass status codes or other headers per CGI/45

  exit(0);

