var fDesc=new Array();
fDesc[0] = "Lua Performance Validator provides automatic source code performance analysis (profiling) of applications as they run. Lua Performance Validator works with the Lua Profiling and Coverage Interface.
Lua Performance Validator does not require a special build of your application - you do not need to make any changes to your application to use Lua Performance Validator.
Lua Performance Validator does not cause significant drops in performance. Lua Performance Validator causes a target program to run marginally slower than normal.";
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 = '';
}
}