How to refer to smb: network path in script

Hi,

I want to export files from EyeTv to a server share. I am seeking input on whether the format is correct for the path to my server:
set destFolder to “volumes:bartholomew:Recorded TV:”

Should I be using “shares” or “Shared” rather than “volumes?”

Here is the complete script. Thank you for helping a total noob.

on RecordingDone(recordingID)
[b]set destFolder to "volumes:bartholomew:Recorded TV:"[/b]
tell application "EyeTV"
launch
set recordCount to count recordings
if recordCount is greater than 0 then
repeat
delay 100
set busyList to recordings whose busy is true
if busyList is {} then exit repeat
end repeat
repeat with myCounter from 1 to count recordings
set thisTitle1 to title of item myCounter of recordings
set thisTitle1 to my parseout(thisTitle1)
set thisTitle2 to unique ID of item myCounter of recordings
set thisTitle to thisTitle1 & thisTitle2
export from item myCounter of recordings to file (destFolder & thisTitle & ".m4v") as MPEG4 replacing yes
end repeat
repeat
delay 100
set busyList to recordings whose busy is true
if busyList is {} then exit repeat
end repeat
delete recordings
end if
end tell
end RecordingDone