#!/usr/bin/perl # NCJumper v1.0 # NCJumper is copyright (c) 2000 TeamNC. print "Content-type:text/html\n\n"; # --==Make URL Data Perl-Friendly==-- ($whichnav, $pageurl) = split(/&/,$ENV{'QUERY_STRING'}); if ($whichnav eq "home") { $navloc = "navhome.htm"; } elsif ($whichnav eq "news") { $navloc = "navnews.htm"; } elsif ($whichnav eq "previews") { $navloc = "navpre.htm"; } elsif ($whichnav eq "reviews") { $navloc = "navre.htm"; } elsif ($whichnav eq "nab") { $navloc = "navab.htm"; } elsif ($whichnav eq "ncforums") { $navloc = "navforums.htm"; } elsif ($whichnav eq "links") { $navloc = "navlinks.htm"; } elsif ($whichnav eq "purchase") { $navloc = "navpur.htm"; } elsif ($whichnav eq "about") { $navloc = "navabout.htm"; } elsif ($whichnav eq "contact") { $navloc = "navcontact.htm"; } else { $navloc = "navmain.htm"; } if ($pageurl eq "") { $pageurl = "home.htm"; } # --==End Make URL Data Perl Friendly==-- # --==Begin Main Section==-- print < Welcome to NerfCenter - The Unofficial Source for Everything Nerf®. <body> <p align="center"><img src="images/logow.gif" alt="logow.gif (3527 bytes)" WIDTH="200" HEIGHT="200"></p> <font size="1"> <p align="center"></font><font color="#0000a0" face="Arial" size="5"><strong>NerfCenter - The place for finding information about Nerf wars, guns, weapons, and more Nerf stuff.</strong></font><font size="1"></p> <p><font face="Arial">NerfCenter is the unofficial source for finding any information you ever wanted about Nerf wars, guns, weapons, and more Nerf stuff. Ever wonder when a certain Nerf weapon was released? How about how much ammo a weapon can hold? Take a look at our Nerf reviews. We have over 80 Nerf-brand weapons reviewed, and cover the latest guns as soon as possible when they come out.</font></p> <p><font face="Arial">Sadly, NerfCenter does not contain any information about Nerf Herder or Nerf bars, two other items found on the web. (For those who are wondering, Nerf Herder is a rock group and Nerf bars are step-ups for trucks.) Also, NerfCenter has nothing to do with the National Eye Research Foundation, whose web site can be found at <a href="http://www.nerf.org/">http://www.nerf.org</a>.</font></p> <p><font face="Arial">NerfCenter is an unofficial web site and is not affiliated with Hasbro, Kenner, Larami, Super Soaker, or TeamNERF. It is a fan web site, and the opinions found on it should not be treated as the opinions of the aforementioned companies.</font></p> <p><font face="Arial">NerfCenter is one of the many Nerf-fan web sites found on the Internet. Many of these Nerf sites can be found in the NerfCenter link database, which is one of the largest such databases found on the Internet.</font></p> </font> <p align="center"><strong><font face="Arial"><small>Ouch.&nbsp; To view Nerf<sup>®</sup>Center, you need to use a browser that supports frames (at least).</small><br> <small>(If you have one, make sure that frames are turned on.)</small></font></strong></p> <p align="center"><strong><small><font face="Arial">We recommend you download the latest version of either <a href="http://www.netscape.com">Netscape Communicator</a> or <a href="http://www.microsoft.com/ie/">Microsoft Internet Explorer.</a></font></small></strong></p> <p align="center"><strong><small><font face="Arial">Thanks for your support.</font></small></strong></p> <p align="center"><img src="images/TeamNC.gif" alt="TeamNC.gif (1693 bytes)" WIDTH="150" HEIGHT="50"></p> </body> EndCode # --==End Main Section==-- # --==End Perl==-- #end