var fDesc=new Array();
fDesc[0] = "CD-LabelPrint is a software for creating labels, which specializes in printing directly to the CD media.
Various functions allow you to easily create an original design.
System requirements:
- Windows 7(32bit)
- Windows 7(64bit)
- Windows Vista(32bit)
- WIndows Vista(64bit)
- Windows XP SP2 or later
- Windows XP x64 Edition
- Windows 2000 Professional SP4 or later
- Windows Me
- Windows 98";
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 = '';
}
}