I assume you are trying to add 90 days to that date? If you
are, try this:
dateFormat("10/07/2008"+90,"mm/dd/yyyy") Basically, add the
double quotes around the date.
I would suggest though that you use the dateAdd() function to
do this. Something like:
dateAdd("d",90,"10/07/2008")
Hope this helps!