var fDesc=new Array();
fDesc[0] = "The Graphics Display Designer (GDD) is an MPLAB IDE plug-in that provides you with a quick and easy way of creating graphical user interface (GUI) screens for embedded applications on Microchip microcontrollers.
The GDD is a visual design tool created for use with the Microchip Graphics Library. GDD is a time saving tool. End users are still required to learn how to use the Microchip Graphics Library to fully create an end application.";
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 = '';
}
}