var fDesc=new Array();
fDesc[0] = "RoboExplorer is a suite of software for setting up and maintaining the programs, teach points and robot configuration on the Mitsubishi robot controllers. The key features are:
- download robot programs to the controller
- download teach points to the controller
- teach point editor
- software pendant, allowing the user to move the robot at a reduced speed
- upload the controller and robot parameter files and current parameter settings
- download parameter settings
- monitor the programs running in the controller
- monitor the variable values of a running program
- monitor the status of the controller's IO
- monitor the position of the robot
- view the error history stored in the controller (last 200 error states)
- start/stop programs
- reset errors
- turn the servos on/off
- adjust the override speed
- windows explorer style interface
- drag and drop files into the robot controller
- best of all it's FREE";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}