var fDesc=new Array();
fDesc[0] = "EZ Schematics is a program that provides the end user with the ability to quickly and easily transform logical concepts into a professionally displayed electrical schematic. The electrical symbols are created in 1/2 scale increments designed to align perfectly with the default snap (also set at 1/2), thus making precise placement of the symbols a simple procedure.";
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 = '';
}
}