var fDesc=new Array();
fDesc[0] = "FPS Wizard for WPF facilitates the development of WPF wizards. The developer has the ability to design a custom interface and define the sequence of screens in the wizard. The wizard can be customized with themes, button styles and transition effects between screens.
The product includes 8 themes and over 10 transition effects. The transitions are made up of effects such as 3D rotation, Fade, Grow and more to give the wizard a modern look and feel.";
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 = '';
}
}