in reply to Re: Problem with internet explorer.Mozilla firefox,beonex,netscape ok.
in thread Problem with internet explorer.Mozilla firefox,beonex,netscape ok.

BEGIN { unshift @INC, "./Modules"; }

What do you think is the purpose of this? (I suspect it has none).

It's roughly the equivalent of

use lib './Modules';

It's quite common for times when you're on a multi-user system, and you don't have access to install modules in the main include directories. See perldoc lib for more information.