in reply to Taint and Module q

Look at lib.

I'm assuming MYMODULE.pm is in '/usr/home/justin/www/LIB'. Then:
use lib qw(/usr/home/justin/www); use LIB::MYMODULE;
If the package is actually called 'LIB::MYMODULE' then I'd do it as above. If the package name is just 'MYMODULE' (and you keep all your modules in the LIB directory) then I'd:
use lib qw(/usr/home/justin/www/LIB); use MYMODULE;