var fDesc=new Array();
fDesc[0] = "WinAutomation: Powerful Windows Automation Software with Macro Recorder
If you are tired of repeating the same tasks over and over, if you do not want to mess with Windows scripts, if you are not a programmer and you want a tool that is easy to use and can help you automate your routine tasks, you have come to the right place.
WinAutomation is a powerful automation tool that helps you automate any repetitive task on your computer.
No need to use Windows scripting or learn cryptic batch file commands anymore (if you have ever tried you know what a hassle it can be). Using WinAutomation you can automate any task, however simple or complex using an intuitive Drag & Drop interface.";
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 = '';
}
}