var fDesc=new Array();
fDesc[0] = "The scopeEye.com Digital Microscope is an exciting new device that lets you view clearly many micro-objects, and has a wide scope of applications, such as Industrial Inspection, Computer Parts inspection etc.
ScopeEye.com USB Digital Microscope is an intelligent device that allows you to view, capture, record and measure micro-objects live on your PC. Furthermore, scopeeye.com can also capture still images and take accurate measurement, detailed analysis and documentation and record video (real-time and time lapsed).";
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 = '';
}
}