var fDesc=new Array();
fDesc[0] = "SilkTest is a cost-effective, powerful tool for automated function and regression testing, delivering advanced test automation capabilities that can be used by many project stakeholders.
Projects in SilkTest Classic organize all the resources associated with a test set and present them
visually in the Project Explorer, making it easy to see, manage, and work within your test environment.
SilkTest Classic projects store relevant information about your project, including references to all the
resources associated with a test set, such as plans, scripts, data, options sets, .ini files, results, and frame/include files, as well as configuration information, Editor settings, and data files for attributes and queries. All of this information is stored at the project level, meaning that once you add the appropriate files to your project and configure it once, you may never need to do it again. Switching among projects is easy - since you need to configure the project only once, you can simply open the project and run your tests.
When you create a new project, SilkTest Classic automatically uses the SilkTest Agent that supports
the type of application that you are testing. For instance, if you create an Adobe Flex project, SilkTest Classic uses the Open Agent.";
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 = '';
}
}