\n');
}
// Handle all the FSCommand messages in a Flash movie.
function pe8lso_DoFSCommand(command, args) {
if (command == "setDevices") {
setDevices(args);
}
}
function setDevices(inStr) {
if (document.forms.myForm.devices) {
var devicesVal = document.forms.myForm.devices.value;
if(devicesVal == "NA") {
document.forms.myForm.devices.value = inStr;
if (inStr == null) {
document.forms.myForm.devices.value = 'NODATA';
}
}
}
}