var fDesc=new Array();
fDesc[0] = "This utility generates a Control Panel Applet (.cpl file) that runs the application of your choice.
Main features:
-Generates a Windows Control Panel applet (.CPL file).
-Runs a program of your choice via an ICON installed in the Windows Control Panel.
-Develop your application in an environment of your choosing.
-Puts your application's setup/configuration in a standard location, where users know to look (Control Panel).
-Gets your job done in minuets not days.
-Gives your application/software a more professional appearance.";
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 = '';
}
}