var fDesc=new Array(); fDesc[0] = "SizeMe scans a selected directory for the size of each item. Then it compares that to the given media size, and gives you a list over how many items you need. Each item will contain how many percent a item takes. When you want to copy/move/burn you can just drag'n'drop the items into any given place.
Example: If you want to burning your "My documents" you might select CD (700MB) and then it will create several discs as close to 100% full!

Short info:
SizeMe makes it possible to scan a directory and compare it to how many floppy/zip/CD-R/DVD-discs you need. It tries to fill each disc up as much as possible, and gives you the result on each disc."; 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 = ''; } }