var fDesc=new Array(); fDesc[0] = "Cakewalk Audio Finder (CWAF) is designed to display relationships between Cakewalk WRK or CWP files and associated .WAV and .WA~ data files. It also facilitates searching for missing audio data, as well as audition and deletion of files. Occasionally it may be desirable or necessary to determine which audio files are associated with which wave files. You might have more than one audio data directory. A power failure might have trashed the latest, unsaved version of a WRK or CWP file. You might have accidentally moved or deleted audio WA~ files from the audio data directory. CWAF can help by displaying the filenames of audio data which should be present. It can also tell you if the data is missing, or not associated with any WRK or CWP 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 = ''; } }