var fDesc=new Array();
fDesc[0] = "NS Basic Desktop lets you quickly produce standalone, royalty free applications for Windows XP, 2000 and Vista, including Tablets and Netbook devices. You can connect to databases like ADO, SQL and Oracle, communicate with the internet and devices, play movies and music, manipulate Excel spreadsheets, and much more.
This version brings an improved UI, gradient buttons, the ability to embed sounds, pictures and files into the executable, and over 30 other enhancements and fixes.";
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 = '';
}
}