var fDesc=new Array();
fDesc[0] = "MsAgent is a piece of Microsoft Windows® technology that has lay dormant for many years. While some applications have used it, most web functions have never really been explored.
MsAgent Javascript Editor is a point and click interface that allows you to automatically create javascript routines that will use MsAgent functions to bring your web site to life! Each Agent can talk to your visitors, direct them to the important areas on your site and help you promote a certain product or service you offer.";
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 = '';
}
}