WWW form is not working on IE 6.0.2900.2180.xpsp_sp2gdr.0702

The following code works great on safari and Firefox but dumps out on IE. What I mean by bumps out is, it fails to detect connect to the URL on IE (download.error).

Any suggestions to fix this? I am working on Unity v2.

-Mark

=================
//URL for php sendmail script
var addFeedbackUrl=“http://localhost/~grobm/sendmail2.php”;

//values to pass
var to = “”;
var email = “”;
var message = “”;

to = TeacherEmail; //grabbing cookie value
email = StudentEmail; //grabbing cookie value
message = FeedbackStr; //grabbing cookie value

function postfeedback(to, email, message) {
// Create a form object for sending feedback
var form = new WWWForm();
form.AddField( “to”, to );
form.AddField( “email”, email );
form.AddField( “message”, message );

// Create a download object
var download = new WWW( addFeedbackUrl, form );

// Wait until the download is done
yield download;

if(download.error) {
print( "Error downloading: " + download.error );
sendtext = “Not Sent”; //changes button text value.
}
else {
Sendtext = “Sent”; //changes button text value.
}
}

Well, it was a simple issue of the Editor value not being correct and that carring over to the build + the parsing of the URL from the PlayerPrefs.