var fDesc=new Array();
fDesc[0] = "Create an excellent drop-down menu for your Expression Web site quickly and easily
- Generated drop-down menu works on every major browser and OS
- Add-in comes with over 200 ready to use navigation bar designs
- You can fine-tune the menu appearance to the very detail
- User interface is simple and integrated with MS Expression Web";
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 = '';
}
}