Im going mad trying to figure this out...
here is the code for the page im working on... can you use this to show me how/where the loop/sub elements go...
-- Thanks
<html>
<body>
<%
If request.querystring("state"

= "" Then
%>
<form action="sendtofriends.asp?state=send" method="post">
<TABLE width="516" border=0 cellPadding=2 cellSpacing=3>
<TR>
<TD width="26%"><FONT face="Arial, Helvetica, sans-serif" size=2>Your
First Name* </FONT></TD>
<TD width="74%" vAlign=top><INPUT name=FIRST_NAME size="30">
</TD>
</TR>
<TR>
<TD><FONT face="Arial, Helvetica, sans-serif" size=2>Your
Last Name*</FONT></TD>
<TD><INPUT name=LAST_NAME size="30"> </TD>
</TR>
<TR>
<TD><FONT face="Arial, Helvetica, sans-serif" size=2>Your
eMail Address*</FONT></TD>
<TD><INPUT name=EMAIL_ADDRESS size="30"> </TD>
</TR>
<TR>
<TD colSpan=2><BR> <B><FONT face="Arial, Helvetica, sans-serif" size=3>eMail
To: </FONT></B><FONT face="Arial, Helvetica, sans-serif" size=2><I>(Fill
in your friends' eMail addresses below.)</I></FONT></TD>
</TR>
<TR>
<TD colSpan=2>
<% For i = 0 to 9 %>
<TABLE cellSpacing=0 cellPadding=0 border=0>
<br />
<TR>
<TD width="16" class="reflabel"><div align="right">1</div></TD>
<TD width="192"> <INPUT size=30 name="FRIEND_EMAIL" id="1">
</TD>
<TD width="16" class="reflabel"><div align="right">6</div></TD>
<TD width="181"> <DIV align=right>
<INPUT size=30 name="FRIEND_EMAIL" id="6">
</DIV></TD>
</TR>
<TR>
<TD class="reflabel"><div align="right">2</div></TD>
<TD> <INPUT size=30 name="FRIEND_EMAIL" id="2"> </TD>
<TD class="reflabel"><div align="right">7</div></TD>
<TD> <DIV align=right>
<INPUT size=30 name="FRIEND_EMAIL" id="7">
</DIV></TD>
</TR>
<TR>
<TD class="reflabel"><div align="right">3</div></TD>
<TD> <INPUT size=30 name="FRIEND_EMAIL" id="3"> </TD>
<TD class="reflabel"><div align="right">8</div></TD>
<TD> <DIV align=right>
<INPUT size=30 name="FRIEND_EMAIL" id="8">
</DIV></TD>
</TR>
<TR>
<TD class="reflabel"><div align="right">4</div></TD>
<TD> <INPUT size=30 name="FRIEND_EMAIL" id="4"> </TD>
<TD class="reflabel"><div align="right">9</div></TD>
<TD> <DIV align=right>
<INPUT size=30 name="FRIEND_EMAIL" id="9">
</DIV></TD>
</TR>
<TR>
<TD class="reflabel"><div align="right">5</div></TD>
<TD> <INPUT size=30 name="FRIEND_EMAIL" id="5"> </TD>
<TD class="reflabel"><div align="right">10</div></TD>
<TD> <DIV align=right>
<INPUT size=30 name="FRIEND_EMAIL" id="10">
</DIV></TD>
</TR>
</TABLE>
<%Next%>
</TD>
</TR>
<TR>
<TD></TD>
<TD><input type="submit" name="Sendtofriend" value="Send This Message >>"></TD>
</TR>
</TABLE>
</form>
<% End If %>
<%
If request.querystring("state"

= "send" Then
Dim sendername, senderemail, theToAddress, sendermessage
sendername = request.form("First_Name"

& request.form("Last_Name"

senderemail = request.form("Email_Address"

theToAddress = request.form("Friend_Email"

sendermessage = senderemail & " enjoyed reading about Our Latest Projects,and thought you would like to receive a copy as well." &vbcrlf & vbcrlf & "If you would like to continue to receive copies of our enewsletter, click the subscribe link below and you will receive these directly in your email box in the future!"
Dim MyBody
Dim MyCDONTSMail
Set MyCDONTSMail = CreateObject("CDONTS.NewMail"

MyCDONTSMail.From= "" & senderemail
MyCDONTSMail.Subject= "Thought you'd find this E-Newsletter Interesting! From " & senderemail
MyBody = sendermessage & vbCrLf & vbCrLf
MyBody = MyBody & "_______________________________________________________________" & vbcrlf
MyCDONTSMail.Body= MyBody
MyCDONTSMail.Send
Response.write("All done now!"
End If %>
</body>
</html>