in reply to @INC Question

It looks like you don't have Net::FTP installed on that box hence the "Can't locate..." error. If you are using ActivePerl you can use PPM to install that module.
ppm>install Net::FTP
If you do have it installed but it's in a "non-standard" directory you'll have to tell perl to add that dir to @INC:
use lib 'c:/path-to/the-dir/that-contains-Net-Ftp';