var fDesc=new Array();
fDesc[0] = "CORRELATE® K-Maps are scalable, dynamically updated, "virtual binders" of contextually related embedded documents and hyperlinks, not a collection of outdated files in a rigid hierarchy of folders. Comes in a stand-alone PC version or extensible enterprise Sharepoint®, LDDM or ERP solutions.
Benefits:
-The same file can be used in multiple structures
-The same file can be used multiple times in the same structure
-Storage area or file structure has no effect on how you structure the information in Correlate
-Content is not duplicated, copied nor moved, you do not have problems with inconsistency of the data
-Many different file types can be included, such as: documents, spreadsheets, exchange e-mail, file folders";
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 = '';
}
}