var fDesc=new Array();
fDesc[0] = "The WebSitePulse Transaction Recorder provides an easy way to record, edit, store and upload e-business transactions used with the web transaction and web application monitoring services.
Transaction Recorder features:
- Supports login forms and form submital;
- Supports secure pages (HTTPS);
- Supports frames, iframes and AJAX calls;
- Supports popup windows;
- Supports Java-Script;";
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 = '';
}
}