var fDesc=new Array();
fDesc[0] = "Advanced Text Storage is a Windows based application designed to store,edit and reuse frequently-used text, which can be transferred between the program and Windows Clipboard.
Advanced Text Storage is a simple utility that will help you avoid typing the same text over and over again and make it easy to fill out forms or documents, insert often-used text into any application or document. Advanced Text Storage saves the frequently-used text, and gives you easy and quick access to it for later 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 = '';
}
}