var fDesc=new Array();
fDesc[1] = "for non-experts, it has numerous utilities to edit images in a personalized way. However, the amount of tools offered may be confusing to users who have had no previous contact with basic image editors.";
fDesc[2] = "almost the same way as Photoshop with similar support for pressure sensitive tools. But Painter also emulates the visual characteristics of traditional art painting such as oil paint, pastel sticks, charcoal, etc. supporting several textured surfaces.";
fDesc[3] = "difficult setup is required. Your photos are turned into paintings in front of your eyes in a few seconds.";
fDesc[5] = "Gioconda, St. John the Baptist, the Madonna Litta, a Self-Portrait, the Portrait of a Musician, and a Horse Study.";
fDesc[6] = "Pictures can be saved to disk, opened from disk and printed in full color to show friends and family!";
fDesc[7] = "can be saved, sent as a picture, inserted into documents or printed. Each text character takes the individual color of the small area it is replacing and the original picture will be recognized.";
fDesc[8] = "just likes creating kaleidoscopic images. Now with layers and Photoshop export!";
fDesc[9] = "play Painter Madness game. You will have to control the movement of the paint basket with specific aerodynamic effects in the game!";
fDesc[10] = "for button color changes on mouse over and when buttons are clicked.";
fDesc[11] = "the controls given in the game Run Painter Run. There are also many lots more things which you can enjoy in this game like the funny sound it makes while you play the game and its cool and bright graphics will make your game more interesting.";
fDesc[12] = "road map, to create graffiti, pixel art, drawing, to paint ecard, handwrite message or note.";
fDesc[13] = "them into the world of colours. The shareware version lets you colour two lovely drawings. The registered version contains 15 hand-made drawings and ability to update.";
fDesc[14] = ", resize, rotate, merge image parts, and use images as painting brushes. Complete source code is available for";
fDesc[15] = "the same time, you can copy, resize, rotate, merge image parts, and use images as painting brushes. Complete source code is available";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}