I am writing to a text file some values wich are separated by ","
unfortunatly when The file is written the values are encolsed in "
this realy dose not help me, what could I do?

Data= 123,123

open "Data.csv" for ouput as #1
write #1, Data
close #1

the file contains

"123,123"

How do I get rid of the "

THanks
Santiago