var fDesc=new Array();
fDesc[0] = "Web Stimulus is a premium ASP.NET performance solution that speedups web browsers with acceleration plug-in. The plug-in seamlessly communicates with the ASP.NET server to give you better performance than in any server-only solution.
Web Stimulus has two levels of acceleration that work together for improved speed and scalability of your web application.
Front-End Acceleration optimizes Front-end performance for the entire web application.
Back-End Acceleration optimizes Back-end performance page-by-page.";
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 = '';
}
}