var fDesc=new Array();
fDesc[0] = "AVRpal.net is a very easy to use avrdude GUI. Now, avrdude is a very popular programmer application for AVR microcontroller mainly because its cross platform and its small in size but it has one major drawback. This application requires a modified firmware for USBasp to enable the slow sck control feature from the application window.";
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 = '';
}
}