var fDesc=new Array();
fDesc[0] = "The SignsPC application is used in conjunction with the MicroStation computer-aided drafting application. SignsPC extends MicroStation by providing the user with a toolkit for generating and labeling traffic signs. The toolkit also includes a lettering feature to accurately place lettering cells spaced according to standard specifications.";
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 = '';
}
}