var fDesc=new Array();
fDesc[0] = "LC3Draw’s main task is to take numerical representations of director configurations and
convert them into graphical representations. The standard format represents the director
at a particular location as a cylinder drawn with black lines on a white background.
Representation of the director throughout a sample in such a manner is still LC3Draw’s
primary purpose. However, additional features make it much more than a simple drawing
program.";
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 = '';
}
}