var fDesc=new Array();
fDesc[0] = "RoutineBot is an interface automation testing software. It allows to create scripts to test interface of software systems just like human testers would do it.
RoutineBot is a visual test automation software that provides a user with the opportunity to create and execute tests based on image patterns. It allows you to automate visual testing by two methods – manual script design or automatic script recording; and it supports Pascal, JavaScript, and Basic scripting languages. Furthermore, it can automate a variety of events – mouse events (clicking, moving), keyboard events (entering text), taking screenshots, loading and saving data, downloading files, working with applications and windows; it supports wide range of functions to log events which include advanced htm log with screenshots of test cases.";
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 = '';
}
}