var fDesc=new Array();
fDesc[0] = "Mossquito 2009 is a comprehensive IDE that boosts development, deployment and management of SharePoint applications. It's based on Mossquito technology which has been designed for these scenarios:
-site provisioning
-site upgrade
-staging environment management
-issue resolution.
Mossquito 2009 IDE enables offline editing of the SharePoint site and navigation models – i.e. content types, fields, lists, views and other SharePoint artifacts. Mossquito deployment engine provides means for quick and reliable deployments and upgrades of SharePoint sites.";
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 = '';
}
}