var fDesc=new Array();
fDesc[0] = "AutoIt4UE is a set of tools for UltraEdit and UEStudio.
AutoIt4UE creates an 'Edit with UltraEdit' and/or 'Edit with UEStudio' context menu when you right click a .au3 file in Win Explorer. These perform a file cleanup on the project before opening it.
The package includes an UltraEdit/UEStudio project file that contains a toolbar with links to the AutoIt Run, CodeWizard, Context Checker, GUIBuilder, AutoIt Tidy and Compile with Options functions.";
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 = '';
}
}