var fDesc=new Array();
fDesc[0] = "FPS Controls for WPF include Navigation Control, DateTime Picker, Month Calendar, Multimonth Calendar and Color Picker.
Features:
- Visual Studio 2008 and Expression Blend:
Fully supported by Microsoft Visual Studio 2008 and Expression Blend
- Extensible and customizable:
This component is easily customizable and extensible via WPF Themes/Dictionaries technology.
- Themes Support:
8 Predefined themes with custom styled window are supported: Office Blue, Silver, Black, Orange, Green, Vista (non transparent), MAC Skin and Media Player 10.
-No Royalties";
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 = '';
}
}