\n');
}
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function menu1_DoFSCommand(command, args) {
var menu1Obj = InternetExplorer ? menu1 : document.menu1;
var menu1Obj = document.getElementById('menu1');
//
if (command=="myvideo"){
if (navigator.appName == "Netscape") {
document.MediaPlayer1.Stop();
document.MediaPlayer1.URL = streams[args];
document.MediaPlayer1.controls.Play();
} else {
document.MediaPlayer1.controls.Stop();
document.MediaPlayer1.URL = streams[args];
document.MediaPlayer1.controls.Play();
document.all.aCell.background="images/pic2s.gif";
}
}
if (command=="stopvideo"){
if (navigator.appName == "Netscape") {
document.MediaPlayer1.controls.Stop();
} else {
document.MediaPlayer1.controls.Stop();
}
}
if (command=="videob1"){
if (navigator.appName == "Netscape") {
document.MediaPlayer1.controls.Stop();
document.MediaPlayer1.URL = streams[args];
document.MediaPlayer1.controls.Play();
} else {
document.MediaPlayer1.controls.Stop();
document.MediaPlayer1.URL = streams[args];
document.MediaPlayer1.controls.Play();
}
}
}
//-->