Lines 45 to 47 are now:
'## Forum_SQL
strSql = "SELECT M.M_EMAIL, M.M_NAME FROM " & strMemberTablePrefix & "MEMBERS M"
strSql = strSql & " WHERE M.MEMBER_ID = " & Request.QueryString("ID")
Change line 46 to:
strSql = "SELECT * FROM " & strMemberTablePrefix & "MEMBERS M"
Lines 82 to 85 are:
if (Err_Msg = "") then
strRecipientsName = Request.Form("Name")
strRecipients = Request.Form("Email")
Change line 85 to:
strRecipients = rs("Email")
Line 174 to 177 are:
<tr>
<td bgColor=<% =strPopUpTableColor %> align="right" nowrap><b><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>">Send To Email:</FONT></b></td>
<td bgColor=<% =strPopUpTableColor %>><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><% =rs("M_EMAIL") %><input type=hidden name="Email" value="<% =rs("M_EMAIL") %>"></font></td>
</tr>
Remove those.
Before editing your files, always make a backup copy just in case something goes wrong!

http://www.frutzle.com
Snitz Exchange | Do's and Dont's