HI just to add some info.
when opening the file, using vi of course, do the following :
:1,$s/<CTRL>+<v> <CTRL>+<m>//g
This would do the following :
:1,$s # substitute from line 1 till the end
/<CTRL>+<v> <CTRL>+<m>/ # ctrl+v for a special character, named ctrl+m
//g # and replace it with nothing, do this multiple times per line
easy isn't it
Regs David