var fDesc=new Array();
fDesc[0] = "SlideTeam PowerPoint Templates Subscription contains a set of 10 complete PowerPoint presentations that are essential for any Business Plan.
It contains the following 10 files -
--Shareholder meeting presentation
--Sales meeting presentation
--Social Media strategy presentation
--Pricing Strategy Presentation
--Investor VC pitch Presentation
--Growth Strategy Presentation
--Demand Generation Presentation
--Company Profile Presentation
--Business Performance Improvement Presentation
--Business Model Innovation Presentation";
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 = '';
}
}