var fDesc=new Array();
fDesc[0] = "DrawPlus X2 is Serif's outstanding, Vista certified drawing, graphics and animation superstar. With enhanced drawing and animation features - including brand new Flash animation support, DrawPlus X2 has everything you need to create eye-catching, professional-standard designs and artwork.
Whenever you're a beginner or a skilled artist - whether need to create a stylish cover for your school or college project, an attractive family tree or business diagram, a photo-realistic art masterpiece, or even a high impact Flash animation - you'll find easy-to-use drawing and painting tools and special effects you can use right away to create your most outstanding designs, ever.";
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 = '';
}
}