Your supplier's spreadsheet is likely to have a column that lists the paths to the images - something like:
Code:
http://www.supplier.com/images/1234567.jpg
http://www.supplier.com/images/2345678.jpg
http://www.supplier.com/images/3456789.jpg
Copy this column and paste it into a plain text editor (notepad++), then save it as a .txt file .
Save this file in the root (c:) of your hard drive.
Get wget from:-
http://sourceforge.net/project/downl...se_mirror=garr
install it
open a cmd prompt e.g. start | run | type: cmd
in the command prompt type cd.. press enter
type this again till you get to just the c:
(The program may be located in a BIN folder, and if so, the likely path will be: C:\Program Files\GnuWin32\bin. At the c: prompt, type cd Program Files\GnuWin32\bin)
When you reach this location...
type wget -i c:\textfile.txt (replace textfile.txt with the name of the textfile you created)
let it run till it downloads all your images. (They will be saved into the bin folder, because that's where WGET is located, so later you can move them to another folder).
you will now have a folder with all the images as they were on the remote server.
You can then FTP the images to your own server.