var fDesc=new Array();
fDesc[0] = "Adobe Community Publishing is used to publish your own content on Adobe products and technology.
How to create an article:
In the Community Publishing AIR application, click New Document.
Select a template, and click OK.
In the text box at the top of the authoring window, type a title for the article.
Complete the following Document settings:Skill Level,Keywords ,Application";
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 = '';
}
}