I'm having problem.

If I do like
<%
for x = 1 to NoOfEmail
objEMail.To=Mail_add
Mail_add=Email(x) & ", "
Next
response.write Mail_add

objEMail.To = left(Mail_add, len(Mail_add) - 2 )

%>

Then I get only first value, though I need get them like
Email(1),Email(2),Email(3),....Email(x), .

How do I put them that way?
Please help.