var fDesc=new Array(); fDesc[0] = "It enables you to export the cue list contained in a WAV file, and to save it to a seperate, small file. Since this cue list file is only a few KB small, it can be archived or sent by e-mail easily. The recipient can then import the cue list from this cue list file into his own wav file. (This is particularly useful if several people are working on a copy of the same WAV file and want to exchange and merge their results later, e.g. for evaluating EVP recordings.) You can also convert the WAV file to an MP3 file to save HD storage. If you later should need the WAV file again with its original cue list, simply convert the MP3 file back to WAV and import the cue list from the cue list file. The cue list can also be copied as text into the clipboard or saved to a plain text or RTF file, e.g. to transfer textual information about CD tracks or EVP examples to other applications like word processing software. And last but not least, CueListTool can be useful if you are working with CD images, since it can create Cue Sheets from WAV files that contain a cue list, or the other way round, load existing Cue Sheets and write the track information back into a WAV file."; 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 = ''; } }