Mail form sender

something else happened now:

all my site files and SWFs are on Freewebs, except the “contact.swf” which is on Lycos, with it also there is the “sendmail.php” on Lycos.

when clicking on the contact button from Freewebs, the “contact.swf” MC is called from Lycos to be loaded in the main page. i use this code:

//////////////////////////////////////////////
on (release) {
_root.contents.loadMovie(“http://members.lycos.co.uk/username/contact.swf”);
}
///////////////////////////////////////////////

when i try to send an email, it won’t send.
in the “sendmail.php” (which is on Lycos) the code is this:

…bla bla bla …

loadVariables("sendmail.php",this,"POST");
this.onData = function()

…bla bla bla …

is this code the right one or should i include the path to Lycos, like this:

loadVariables(“http://members.lycos.co.uk/username/sendmail.php",this,"POST”);
this.onData = function()

ANYONE GOT AN ADVISE ???