var fDesc=new Array();
fDesc[0] = "WPF Chromium Control is able to render and interact with webpages within WPF and opens up some great opportunities.
This project mixes Google’s Chromium project, a great wrapper called Awesomium and a little WPF pixie dust...
It works great with Flash and Silverlight (assuming plug-ins already installed) but currently it might choke on XBAPs and Java applets.";
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 = '';
}
}