var fDesc=new Array();
fDesc[0] = "Flowchart Converter provides the capability to convert Microsoft® Office Excel®, Microsoft® Office Word®, and Microsoft® Office PowerPoint® documents to Microsoft® Office Visio® documents (*1), which are more suitable for sophisticated process diagram with data visualization capability.
Main Features:
-Capturing figures and flowcharts created with Excel, Word, and PowerPoint for use in Visio® documents;
-Retaining connector connection information;
-Allowing you to identify graphics that have not been successfully converted (using the log view feature)";
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 = '';
}
}