var fDesc=new Array();
fDesc[0] = "With Mini Recorder record your life in one MP3 file.
Features
- Records any sound playing through the sound card. (Music played through MS Media Player, streaming audio, game sound, video sound, voice chat content, etc.)
- Unique Recorder-In-The-Tray user interface. Instant recording anywhere, anytime.
- Event Marks to record time points.
- Integrated audio editor with Event Marks support.
- Integrated file manager and player with instant search and Event Marks support.
- Integrated metadata editor.
- Automatic save in the background. Eliminates the hassle of a Save Dialog.
- Systray visualization of real-time recording status.
- Smart recording volume optimizer to help determine ideal recording volume and minimize sound quality loss.
- Encoding on-the-fly into MP3 files in a wide range of quality choices.
- Supports multiple installed hardware sound devices
- Simple and intuitive smart phone style configuration interface.
- Fake icon for fun.";
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 = '';
}
}