var fDesc=new Array();
fDesc[0] = "Simplifies process of popup windows creation.
Has many appearance and behavior options to configure.
Available from Forms toolbox inside CodeCharge Studio IDE.
Absolutely free for use.
Features:
-Easy to use
-Static and database sources support
-Ability to change appearance options, e.g. window size, toolbar hiding etc.
-Popup window focusing option
-Straightforward installation
-Free to download and 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 = '';
}
}