var fDesc=new Array();
fDesc[0] = "Corel Paint it! touch allows you to draw, paint and even turn photos into paintings just by using your fingers! Created specifically for the Windows® 7 touch-enabled PC, this touch screen software makes it fun and easy for anyone to be artistic.
When you pair Windows 7 with a touch screen PC and Corel Paint it! touch, you can draw, paint, sketch and create photo paintings using nothing but your fingers.
Requirements:
-Windows 7 (with latest Service Pack)
-Touch-enabled computer
-Pentium® IV, 700 MHz or greater
-1 GB RAM
-24-bit color display
-1024 x 768 screen resolution
-140 MB of hard disk space for installation";
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 = '';
}
}