var fDesc=new Array();
fDesc[0] = "Sothink DHTML Menu is a program that allows you to easily create SE friendly JavaScript menus. This JavaScript menu builder can seamlessly integrate with Dreamweaver (CS5 supported), FrontPage, Expression Web and Adobe GoLive as add-ons. You can customize DHTML menu properties such as font, icon, background, border, cursor, tool tip, surround, effects, alignment, transparency and size.";
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 = '';
}
}