var fDesc=new Array();
fDesc[0] = "Clipartorama is an artwork composition software. Based on clipart provided by Clipartopolis you can compose your own artwork and use it for digitizing,scrap-booking,card making,etc.You can use it in the widest range of projects you can possibly imagine
Features:
- Instant Redwork
- import WMF and EMF
- Work with multiple selections
- Custom canvas size
- Export PNG and GIF with Transparent Background
- Align and distibute objects";
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 = '';
}
}