var fDesc=new Array();
fDesc[0] = "Thermometer for PowerPoint (current version: 1.1) is a free add-in that creates a thermometer style bar in the bottom area of the slide that shows how much of a presentation has progressed and how much more is remaining.
It's a very simple add-in and using it is so easy: one click on an icon and you can add or update your thermometer; another click and the thermometer is gone!
The add-in installs a toolbar inside PowerPoint with four icons.";
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 = '';
}
}