var fDesc=new Array();
fDesc[0] = "Ultimate Paint is a full-featured 32-bit Windows graphics program for image creation, viewing and manipulation. On this page you can download different versions, see what extras UP gives you compared to other paint programs, take a look at its cool plug-in effects, register the trial version and browse the tutorials.
In the latest trial version all basic functionality can be used without limitations. In addition we have also introduced a new freeware version.";
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 = '';
}
}