onLoad issue...I think?

I am running into a weird situation. I have a few movies that call in various data using onLoad. One is a very simple poll and it works perfectly on several machines I have tested (inside and outside of the my own network). The only machine that it doen’t work on for some reason (of course) is my boss’. He cannot get it to work on Safari or Firefox.

It has been written for Flash 8 and he has the latest build of Flash. I tested his security settings, etc and still nothing.

The thing I have boiled it down to is the onLoad function since I use it in a few other movies where I pull in XML data the same way.

Here is an example of the code I am using for the poll:

pollID=“001_1”;
stop();
submit_btn.enabled = false;
var loadVars_in:LoadVars = new LoadVars();
trace(loadVars_in)
var loadVars_out:LoadVars = new LoadVars();
loadVars_in.onLoad = function(success) {
if (success) {
//If the values are in goto results
gotoAndStop(“result”);
} else {
//notify of failure I PUT A CHECK IN AND IT GETS STUCK HERE WHICH LEADS ME TO BELIEVE THAT IT MAY BE THE ONLOAD
}
};
// Does the user wants to vote?
listenerObject = new Object();
listenerObject.click = function(eventObject) {
submit_btn.enabled = true;
};
radioGroup.addEventListener(“click”, listenerObject);
//Vote
submit_btn.onRelease = function() {
var selectedNum:Number = radioGroup.selectedData;
loadVars_out.choice = selectedNum;
trace(loadVars_in)
loadVars_out.sendAndLoad(“http://www.bsu.edu/eft/littlerock/p/vote.php?pollID=”+_root.pollID, loadVars_in, “POST”);
};
radio_0.color = 0xFFFFFF
radio_1.color = 0xFFFFFF
radio_2.color = 0xFFFFFF
radio_3.color = 0xFFFFFF

Any suggestions? Why would it work fine everywhere else, but not on his computer. I haven’t had one complaint from any users at all.

Cheers!
Steve