var fDesc=new Array();
fDesc[0] = "Smart.ViewII is an application for Windows95 or higher, developed to communicate with the following devices of the Smart.IC family:
- SmartON
- SmartON
- SmartIC2
- SmartIC2 V3
The SmartViewII program can manage the data of an endless number of Smart.IC devices: there is
an easy search system which allows to find and display only the data of the devices desired.
The data displayed through SmartViewII can be printed by means of a dedicated pushbutton.
Together with the SmartViewII program an additional program, called DFU, is delivered, which
allows the firmware on Smart.IC devices to be updated";
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 = '';
}
}