var fDesc=new Array();
fDesc[0] = "AcroRIP has a various & vivid color expression for normal color & white ink application, very easy color management by use ICC Profiles.
Main features:
- Very easy interface & functions specially for Flat-bed printers equipped with Epson printers.
- Various & Vivid Color Expression for Normal Color & White Ink application
- Very easy color management by use ICC Profiles
- Available with all color expressions by free adjustment of each ink channel
- Immediate job confirmation by pre-viewing print image";
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 = '';
}
}