var fDesc=new Array();
fDesc[0] = "The KB-6610 is a series of powerful programmable keyboard suitable for application in PC compatible system, programmable without TSR under Win2000/ XP Pro environment. This series provides 84 keys (max.) of a comfortable size 19 x 19 mm in 6 x 15 matrix within which a 4 x 4 numerical keypad resides and a 6 position control key which is capable of sending answer back codes according to the position of the key.
Features:
-ideal for Hybrid POS 2000 and 4000 series
-100% true spill-proof structure, state-of-are top notch solid design with water drainage system
-6x15 matrix structure with 84 programmable keys 6 position programmable control key";
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 = '';
}
}