var fDesc=new Array();
fDesc[0] = "Funny Voice changes the pitch of your voice. Higher pitch will let you sound like a smurf, less pitch will give you a deep voice. All you need is a microphone.
- Instead of your microphone, plug in the sound output of your tv card or your audio system and listen!
- Great for your next karaoke party!
- Use it for your answering machine
The program is completely free!";
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 = '';
}
}