var fDesc=new Array();
fDesc[0] = "Cute Skin Editor helps you transform your dreams into reality.
-Drag-and-drop simplicity. Create professional skins the easy way.
-Flexible and powerful options. Create skins with any shape and any size. What's more you can make your cute skins dynamically resizable.
-Advanced component management technology makes it very easy for you to create and edit components. You can select from a very large collection of ready-made components.
- Transition effects, animations and sounds add life and excitement to your skins.
-Effects composer allows you to unleash your creativity.
- High-performance skinning technology gives you smooth and fast skins.";
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 = '';
}
}