var fDesc=new Array();
fDesc[0] = "BearPaw 2448CS Plus is a software that makes scanners work properly.
It has a simple interface that allows you to configure your own personal style, customize the wallpaper, system logo and the screensaver.
Through the interface you may:
- scan the image to the computer
- scan and print the image or document
- scan and fax the image or document
- scan an send the image to the Internet
- convert the image document to a text file
- change the settings.";
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 = '';
}
}