var fDesc=new Array();
fDesc[0] = "WinEdt is a powerful and versatile text editor for Windows with a strong predisposition towards the creation of LaTeX documents.
WinEdt is used as a front-end for compilers and typesetting systems, such as TeX, HTML or NSIS.
WinEdt 7.0 is now the official version of the program. It is unicode-capable and integrates seamlessly with the latest accessories and TeX Systems (MiKTeX 2.9 and TeX Live 2011). It has been extensively tested under Windows XP, Vista, 7, and 8 (32-bit and 64-bit).";
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 = '';
}
}