var fDesc=new Array();
fDesc[0] = "Worksoft Certify is an automated functional testing solution for SAP lifecycle management and cross-platform business process validation. Worksoft Certify was first to market with a solution designed for business analysts that is powerful enough to validate cross-platform business processes without requiring coding.
Worksoft Certify eliminates custom coding and programming, a requirement of most legacy test automation products, making it fast and easy to implement and maintain. Using an object-driven approach rather than generating scripts or code, Worksoft Certify validates business process workflows using a data model of fields, screens, and transactions making it easy to keep pace with dynamic changes.";
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 = '';
}
}