var fDesc=new Array();
fDesc[0] = "Paragon Net Burner is a unique utility to share a CD/DVD/BD burner over the network and remotely make a CD/DVD/BD recordable device available for use by other networked computers.
It gives users the ability to record CDs/DVDs/BDs without having a local burner device.
This solution is extremely helpful for notebook users without CD/DVD/BD burning devices onboard. Sharing a HD-DVD/BD device across the network also reduces equipment costs.";
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 = '';
}
}