var fDesc=new Array();
fDesc[0] = "Rasterino is an image handling plug-in for Adobe Illustrator that shortens the gap between vector and raster.
While Rasterino does not provide fantastic visual effects or eye-catching filters, it is focused on making everyday design work more effective.
Extract embedded images, crop images directly in Illustrator or place multiple images at a time - these functions significantly reduce the time spent for routine tasks when you use images in Illustrator.";
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 = '';
}
}