var fDesc=new Array();
fDesc[0] = "Vemail is software that lets you record and send voice messages instead of text using ordinary e-mail. To send a voice message with Vemail simply enter an e-mail address and then press and hold down F6 while speaking. When you have finished recording, the message will be compressed and sent as an e-mail automatically.
Automates the recording of voice attachments to e-mails; Send e-mails to individuals or groups; Compresses the recording for ease of sending and receiving; Add written comments to be automatically included in the body of the e-mail; Converts the recording into text as a draft to be include it with the e-mail (speech to text engine required); Splices recordings together if required; Supports popular file audio formats
- wav, gsm, and mp3.";
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 = '';
}
}