var fDesc=new Array();
fDesc[0] = "DHTML Menu Wizard is a tool that allows you to design your dhtml menu in minutes and instantly see the results.
Creating the dhtml menu will take less than a minute using the DHTML Menu Wizard. This is a cross-browser menu that stays static on the left of your screen, even as the surfer scrolls.
You can save your dhtml menu to a file and open it later for editing. The dhtml menu builder help you insert your dhtml menu into a web page easily.";
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 = '';
}
}