var fDesc=new Array();
fDesc[0] = "The ucFlash+ Programmer is an affordable, reliable, and fast programmer for MCS51/AVR Microcontrollers and 24Cxx I2C EEPROMs.
The programmer is designed to operate with the Intel Pentium-based IBM-compatible desktop computers and notebook computers. No interface card is necessary to plug the module into a PC (this feature is especially handy for notebook computer users). The menu-driven software interface makes it easy to operate.";
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 = '';
}
}