So I actually have 6 files I have to search for..

$sourcefile="c:\Lotus\Notes\Data\names.nsf" or "c:\Program Files\Lotus\Notes\Data\names.nsf"
if not exist($sourcefile)
$rc=messagebox(" Can not find file " + $sourcefile, "names.nsf",0)
endif
$sourcefilea = "c:\Lotus\Notes\Data\bookmark.nsf"
if not exist($sourcefilea )
$rc=messagebox(" Can not find file " + $sourcefilea, "bookmark.nsf",0)
endif
so and so on for 4 more files

Should I use an array at every file???