var fDesc=new Array();
fDesc[0] = "MegaPointer Compact is a professional pointer for multimedia presentations.
Main features:
-On-screen effects and vector markers in real time.
-Spotlight and Digital Clock.
-Vector arrows with animation;
-Transparent circle markers;
-Transparent horizontal markers;
-Transparent vertical markers;
-MegaCursor in various colors for improved viewing;
-Icon mode that can hide/show main panel anytime during a 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 = '';
}
}