var fDesc=new Array();
fDesc[0] = "QuickVoice is a feature rich voice recording software, providing one click recording, voice email, voice reminders, audio stickies, full featured audio editor, and more. You may use this tool to record memos, dictations, reminders, ideas, "to do" lists, meetings, phone conferences, interviews, even entire lecture or seminars.
You can send voice emails, set voice reminders, send recordings to iTunes library, and display high profile audio stickies with text notes on your computer's desktop.";
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 = '';
}
}