var fDesc=new Array();
fDesc[0] = "Dynamic-CD is a programmable Internet server that runs straight from a CD, DVD or disk drive without installation being required. Dynamic-CD site contains a great deal of information. This is a web server that runs directly from CD, DVD or USB stick and supports ASP scripts, ACCESS databases, encrypts confidential source and includes Wizard to build a CD image. This program work on Windows 95 through to Windows 7.";
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 = '';
}
}