var fDesc=new Array();
fDesc[0] = "Crayola® Creative Studio is a multi-purpose program combining the features of four Crayola art software titles in one program - allowing you to draw, paint, animate, photo-edit, and apply special effects.
Features:
-Twelve realistic art tools simulating real art media
-Hundreds of pre-set colors or mix unique colors on digital palettes
-Hundreds of art images, backgrounds, and templates to create digital art,animations and much more
-Import any standard digital file
-Export in standard file formats for use in other programs
-Learn digital art, photo-editing, and animation techniques with fun activities in the Activity Guide
-Quickly learn the program features with animated Program Tour
-Children learn digital art, animation, and computer skills";
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 = '';
}
}