var fDesc=new Array();
fDesc[0] = "PresentiaFX is a powerful presentation software solution that provides a full suite of intuitive features and capabilities to address all facets of the presentation lifecycle.
PresentiaFX is a market leading alternative to PowerPoint for presentation management. The software allows clients to manage presentations across a large salesforce, internationally, and control brand indentity.
Slides can be locked to control messages and can be published on the web. PresentiaFX is used by large companies.
PresentialFX have a friendly interface is very easy to use.";
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 = '';
}
}