myVars load but

I created a flash object that loades variables to display on a website so that my employer could update the rates at a golf course on the web herself without having me edit the html everytime. I made a PHP script that uploads the rates to text files (UTF-8). Then on the rates page of the site a flash object downloads the rates from the text files. I used this code to do so:

myVars = “http://braesidegolf.com/info/Day9C.txt”;
loadVariables (myVars, “”, “GET”);

Also here is the code which embeds it to the HTML file (although I don’t see how this could cause errors, I don’t want to overlook anything at this point):

<object classid=“clsid:D27CDB6E-AE6D-11CF-96B8-444553540000” id=“obj1” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0” border=“0” width=“483” height=“237”>
<param name=“movie” value=“flash/Rates.swf”>
<param name=“quality” value=“High”>
<embed src=“flash/Rates.swf” pluginspage=“http://www.macromedia.com/go/getflashplayer” type=“application/x-shockwave-flash” name=“obj1” width=“483” height=“237” quality=“High”></object>

My code works, everything loads just like it should. However my boss says that it doesn’t work on her computer, other computers shes tried, and customers claim to not see it either. She claims the page loads correctly, but it doesn’t load the values into the text fields.

My first assumption was that there were some IE settings that would need to be changed to fix it but after playing around with it for a while, I don’t know what else I could change to recreate her situation. In all of my testing on my computer and other computers I cannot recreate the phenomina she claims.

I’ve attached the flash source file.
What can I do to fix this?
thanks