var fDesc=new Array();
fDesc[0] = "AddFlow for Silverlight v1.5
Addflow for Silverlight is a Silverlight Custom control created with Silverlight 4 and VS 2010. It offers the following advantages:
A small deployment assembly. The size of the Lassalle.Silverlight.Flow.dll file is just 205 Kb!!
A light programming interface: we do not provide an inflation of classes and properties.
Separation between visual appearance (defined in xaml) and logic. Every visual elements can be customized.
Full integration with the Silverlight environment";
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 = '';
}
}