var fDesc=new Array();
fDesc[0] = "eXtreme Burner PIC is a high quality but low cost USB port based programmer for the popular PIC18F and PIC16F series MCUs.
Main features:
- In Circuit Serial Programming (ICSP) support.
- Supports All PIC18F ( and PIC18LF) chips - More than 45 devices.
- Supports Selected PIC16F (and PIC16LF).
- High Voltage Programming Support.";
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 = '';
}
}