var fDesc=new Array(); fDesc[0] = "VPLauncher manages your collection of Visual Pinball and Future Pinball tables. It has data bases of tables and shows for every (known) table information like author, version, type of table etc. If a table is selected, a screenshot, the table rules and flyers are displayed (if available). A double click starts the desired table.

You can choose between nine types of display (complete table information or only a list, a tree view, screenshots and/or rules in separate windows etc.)

VPLauncher Visual Pinball data base contains table information for more than 2000 tables and almost 6000 versions. The Future Pinball data base contains table information for more than 70 tables and more than 100 versions. To find a table in the data base, the table file is matched against a checksum (CRC32). If the table file couldn't be found, the file name is matched against a file search name to identify the table without the version."; 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 = ''; } }