var fDesc=new Array();
fDesc[0] = "Main Features :
- Completely redesigned user interface, with resizable and full screen window.
- Advanced search capabilities, including ancillary products.
- Full integrated with Prospector™.
- Safety Data Sheets opening within formula details.
- Mix sprayable for A-Tech Primers and Clearcoats.
- Automatic decreasing of components quantity in stock during weighings.
- Backup and restore of custom colors database and stock / prices info.
- Automatic update of data and program files with USB keys, CD-Rom and Internet.";
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 = '';
}
}