Yep, that's just what I needed.
That might be a nice thing to have in the help files
For anyone interested in adding breadcrumbs, this is a pretty easy way. You can generate the data for that field with your database or using the CONCATENATE function in MS Excel quite easily.
I like that it lets me have multiple breadcrumbs this way as well. I used the following to allow up to three different breadcrumbs to each product:
[--IF PRODUCT.Field1 --]
<br>[-- PRODUCT.Field1 --]
[--END_IF--]
[--IF PRODUCT.Field2 --]
<br>[-- PRODUCT.Field2 --]
[--END_IF--]
[--IF PRODUCT.Field3 --]
<br>[-- PRODUCT.Field3 --]
[--END_IF--]