var fDesc=new Array();
fDesc[0] = "Quickly add Dynamic, animated ToolTip content to any HTML element(s) on your webpage.
Main Features:
- Assign a rich Tool Tip to any ASP.NET Webcontrol using a visual interface.
- Design attractive ToolTip and Rollovers that can include HTML, Flash animations, Videos and Images.
- Visually style the tool tip, its behavior and drop shadow.
- Fine tune the timing and style of your tool-tip animations using ASP.Net properties.
- Microsoft AJAX ready, WAI-Accessible and XHTML-Compliant
- Comprehensive support is on call to guide you through every step of your trial and integration process, and will remain readily available throughout the life of this product.";
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 = '';
}
}