var fDesc=new Array();
fDesc[0] = "RapidKey provides you with a new Windows functionality. This software autocompletes text phrases and autoexpands shorthands in any Windows applications.
You find the RapidKey icon on the taskbar after starting RapidKey. Then you can use:
* Autotexts (quickly type frequently used text)
* Macros (for repetitive text needs)
* Fast access to desktop shortcuts
* Fast access to favorite folders";
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 = '';
}
}