#!/usr/bin/perl
#
# This file is the frameset for the radar pages as called by the main radar page
# The only query is the station ID
# 
# Created by Paul Sirvatka, December 2002
#
use CGI qw(:standard);

$station = $ENV{QUERY_STRING};
if ($station eq ""){$station = "LOT";}

print header();

print qq(<title>College of DuPage Radar Main Page</title>);
print qq(<meta http-equiv="refresh" content="3; url=http://weather.cod.edu/satrad/" />);
print qq(<body>Page no longer valid.</body>);

exit 0;
