var fDesc=new Array();
fDesc[0] = "Cali Karaoke is a software version of a MIDI Karaoke DVD player. It able to play all songs from any of the "California MIDI Karaoke" DVD on your computer. Features:
- Thousand of songs to choose from
- Have fun singing with backtrack music
- Learn to sing
- Practice and memory the song lyric
- Play a musical instrutment along with the backtrack music
- Host the party or singing session with your friends.";
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 = '';
}
}