var fDesc=new Array();
fDesc[0] = "Oront Burning Kit 2 is a compact, fast, affordable, easy-to-use application for burning, managing and erasing major types of CD and DVD discs with just a few mouse clicks. The program encompasses the best aspects of the most popular disc burning software titles on the market and places them all into a single attractive package.
Oront Burning Kit 2 Basic is an ideal solution for those who are looking for well-rounded, easy-to-use and reliable software that will perform basic disc-burning operations with little to no input from the user. An intuitive interface and simplicity of use are the major elements that allow for hassle-free audio, video and data recording.";
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 = '';
}
}