var fDesc=new Array();
fDesc[0] = "ISRCView is a software program that displays ISRC codes on CDs and unencrypted DVDs, as well as table of contents and other disc information.
Features:
-Displays the Table of Contents of any CD, including Enhanced and Mixed Mode CDs, and will show the ISRC codes for audio tracks.
-Shows the session number, track number, start time (in MSF or sectors), length of the track, the type of the track (data or audio), the copy protection flag, pre-emphasis flag, and ISRC code if present.-This program provides a simple way to check that ISRC codes have been correctly recorded.
-Results can be printed or copied to another application.";
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 = '';
}
}