var fDesc=new Array();
fDesc[0] = "The DriveWizard support tool is a Windows based PC program designed to make commissioning and troubleshooting of Yaskawa drives as simple as possible. DriveWizard provides user-friendly tools for viewing, manipulating, and exchanging data with the drive. Data can be retrieved, changed, stored, and graphed.
DriveWizard is compatible with the F7, G7, P7, E7, V74X, GPD515/G5, and G5HHP. Since one software tool can support all these products, maintenance personnel can maintain machines and processes utilizing our different products with ease.
DriveWizard is now Windows 7 and Windows Vista compatible.";
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 = '';
}
}