var fDesc=new Array(); fDesc[0] = "With RAM Monitor you can monitor directly the available RAM on your computer through an icon-bar from the system tray.

By double-clicking the icon bar, you open the main window, where you can get information like the amount of RAM you have in Megabytes and information on the extent of availability and unavailability of RAM.

You can choose from the following options:
- Start With Windows
- Show Main Window at Startup
- Warn Me if Available RAM is Very Low
- Stay on Top of Other Windows"; 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 = ''; } }