var fDesc=new Array();
fDesc[0] = "LogoSmartz is a the logo design software that helps you get a professional, attractive logo in minutes, no knowledge of graphic design being required. The program comes with a wide collection of high quality, professionally designed logo templates. You also have access to over 5000 high quality vector graphic symbols and over a 100 fonts while creating a logo.
LogoSmartz offers various incredible effects that you can apply to text and symbols.";
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 = '';
}
}