var fDesc=new Array();
fDesc[0] = "SkinMan is a vector based drawing tool especially for GUI skins (like VST plugins). all objects are 2D but have lighting / shading parameters.
SkinMan consist of four windows:
-Main window: The canvas and drawing tools.
-Tree window: The list of all primitives. parent-child relationship and foreground-background relationship.
-Properties window: parameters for the current selected primitive. you can tune these parameters to you want, including color / shape controls / lighting / embossing / shadowing.
-Color window: The colors for current selected primitive. One primitive has five colors (Fill1 / Fill2(for gradation) / Border / DropShadow / InsideShadow).
Each window (except for main) can be hidden by F5 / F6 / F7 keys. SkinMan has three types of specular options for each primitive: Flat, Sphere and Metal.";
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 = '';
}
}