LoadVariablesNum Question

Hi there,
i’ve got a form, which i then would like to send using asp (CDO)
anyway, it works a dream when i use the following:

GetUrl(“processForm.asp”,0,“post”);

however when u use:

loadVariables(“processForm.asp”,0,“post”);

It does nothing.
any ideas? the problem with GetURL is that it opens the scrpt in another window, which isnt ideal.

the code in processForm.asp is:

<%@language = “VBScript” %>
<%
strName = Request.Form(“FirstName”)
strEmail = Request.Form(“Email”)
strAddress = Request.Form(“Address”)
strPostCode = Request.Form(“Postcode”)
strPhone = Request.Form(“Phone”)
strService = Request.Form(“service”)
strComments = Request.Form(“ToComments”)
Set myMail=CreateObject(“CDO.Message”)
myMail.Subject=“Contact from Vibe Site”
myMail.From=""
myMail.To=“[email protected]
myMail.HTMLBody =
“<h1>This was submitted on the Vibe Fitness Site:</h1><p><strong>Name: </strong>”&strName&"<br><strong>Email Address: </strong>"&strEmail&"<br><strong>Address: </strong>"&strAddress&"<br><strong>Postcode: </strong>"&strPostCode&"<br><strong>Phone: </strong>"&strPhone&"<BR><strong>Service: </strong>"&strService&"<br><strong>Comments: </strong>"&strComments
myMail.Send
set myMail=nothing
%>

alex