#!/usr/bin/perl -w
#
# Script to redirect from a .pl page to a .shtml page now that the .pl is no
# longer used
#
# Author: A.Edworthy@lboro.ac.uk
#

# Set up the Perl enviroment
use strict;
use CGI;

# Create new objects for CGI.
my $query = new CGI;

my $pass_to_url = "start.shtml";

print STDOUT $query->redirect(-location=>$pass_to_url);
