var fDesc=new Array();
fDesc[0] = "PB/Win creates applications with a Graphical User Interface (GUI), to provide the typical "Look and Feel" of Windows. This is a native code compiler for all versions of Windows, from Windows 95 to Windows 7. It creates highly efficient EXEs and industry-standard DLLs, with Regular Expressions, multi-threading, a built-in Assembler, a full Macro facility.";
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 = '';
}
}