var fDesc=new Array();
fDesc[0] = "A filename builder to enable easy use of the C64 Characterset in filenames
Main features:
-Read D64 files, display the directory, move files around the directory, rename files.
-Export files from the D64 into PRG files
-Import files into the D64 with autodetection for P00 files.
-View/Edit the BAM
-View the block chain of files on the D64
-Create new blank D64 files, clean existing D64's
-View and modify blocks on the disk in hex.
-Automatic check for crosslinked files on the D64.
-View the directory using the native c64 font
-SEQ File Viewer using the c64 font with PETASCII->ASCII conversion option
-Drag and Drop functionality. Drag D64's onto the main screen to load them, drag other files to import them.
-Preliminary support for importing T64's
-A filename builder to enable easy use of the C64 Characterset in filenames";
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 = '';
}
}