hi,
You can post process the text afterwards before you stuck it into the database.
example if what you are seeing is
<img src='http://www.mysite.com/images/picture.jpg'>
and you want really
<img src='../images/picture.jpg'>
then before inserting the data
txt=request.form("editor1")
txt=replace(txt,"http://www.mysite.com","..")
make sure parent paths are on if you are using 2003
RC