var fDesc=new Array();
fDesc[0] = "Open SmartBurner is a brand-new tool to burn data files and video files to DVD/Blu-ray discs. With this smart tool, DVD/Blu-ray burn becomes so easy and fun.
Key features:
Burns data files to a DVD data disc.
Burns data files to a Blu-ray data disc.
Makes a DVD video disc from video files.
Makes a Blu-ray video disc from video files.
Creates ISO files from data files, software, music, videos, etc.
Burns the existing ISO file on the hard disk to a DVD/Blu-ray disc.
Supports single-layer DVDs, dual-layer DVDs, single-layer Blu-ray discs and dual-layer Blu-ray discs.
Supports for making PAL DVDs or NTSC DVDs from video files.
Supports 720p and 1080p output for making Blu-ray video format.
Converts video files to DVD/Blu-ray video format for playback on a standalone player.
Creates a new project to add data files or video files for burning.
Saves the project on the hard disk as a .cpj file for later burn.
Set the disc title.
Shows the detailed information about the target DVD/Blu-ray disc.
Verifies data after the burn is finished.";
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 = '';
}
}