var fDesc=new Array();
fDesc[0] = "Actipro Silverlight Studio is a bundled suite of professional user interface controls and components for the Silverlight framework.
The company behind Silverlight Studio, Actipro Software, is a leader in the WPF UI control market and has brought that expertise to Silverlight, with product offerings that are code compatible with their WPF control counterparts where possible.
Main features:
-Bar Code for Silverlight - Vector-based bar codes that scale cleanly on any type of media.
-SyntaxEditor for Silverlight - A syntax-highlighting code editor control and parsing suite for creating online IDEs.
-Views for Silverlight - Unique Silverlight controls, and panels that support fluid animated item layout.
-Wizard for Silverlight - Everything you need to quickly create wizard dialogs in your Silverlight applications.
-Shared Library for Silverlight - A set of common controls, useful components, and themes for Silverlight applications.";
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 = '';
}
}