var fDesc=new Array();
fDesc[0] = "FeyWriter can be used to burn music, video, and data discs using your files. It provides a simple interface where you can start the creation of new discs and add files using drag-and-drop. FeyWriter also supports the creation of ISO images of discs and burning of disc images from ISO, CUE, IMG, RAW, and BIN formats. Re-writable discs can be formatted using this tool.
During installation, please be careful not to install unwanted software that comes along with its installer.";
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 = '';
}
}