var fDesc=new Array(); fDesc[0] = "Chart Library for .NET is a chart library that gives the software developer a comprehensive way to create and/or save charts their software application. To create any Chart you can use two constructors: CChart(int width,int height) - where width – the chart width and height – the chart height; Draw(Graphics graph) – where graph – the graphics content; SaveToFile(string FileName, System.Drawing.Imaging.ImageFormat imageformat) – where FileName – the file name where you want get chart, imageformat – used to set image file format (bmp, gif, jpeg…)."; 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 = ''; } }