Desperate! IE Flash different from netscape?

Just went live with a soft launch for this site…
http://www.mun2television.com

Works great in i.e
Click on Shows> and any Show from left.

When i watch in Netscape i looks like its not getting the variables from the page. So it wont load the right stuff.

Heres th code that calls in the variable.

stop();
path = "content_media/";
myvars = new LoadVars();
myvars.loadVariables("Show_Page.aspx");
//creating the loadVars function
myvars.onLoad = function(success) {
if (success) {
ShowID = myvar.ShowID;
_root.play();
} else {
}
};
if (ShowID != "") {
play();
}

Any idea? Its loading the variable ShowID through flashVars.

Like so…

<div id=“FlashObj”><object classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0” width=“710” height=“450” VIEWASTEXT> <param name=“movie” value=“showpage.swf”> <param name=“FlashVars” value=“ShowID=16&ShowTimes=&Speed=H&”> <param name=“quality” value=“high”> <embed src=“showpage.swf” FlashVars==“ShowID=16&ShowTimes=&Speed=H&” quality=“high” pluginspage=“http://www.macromedia.com/go/getflashplayer” type=“application/x-shockwave-flash” width=“710” height=“450”></embed> </object></div>