var fDesc=new Array();
fDesc[0] = "Designers of Serial EEPROM applications can enjoy the increased productivity, reduced time to market and rock-solid design that only a well thought out development system can provide. Microchip's SEEVAL Serial EEPROM Designer’s Kit includes everything necessary to quickly develop a robust and reliable Serial EEPROM design, and greatly reduce the time required for system integration and hardware/software debug.
Features:
- Windows 95/98, ME, NT, 2000, and XP
-Total Endurance™ software model
-SEEVAL 32 developer board
-SEEVAL 32 user interface software
-RS-232 serial cable
-Power supply
-Serial EEPROM sample pack
-SEEVAL 32 Quick Start Guide";
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 = '';
}
}