var fDesc=new Array();
fDesc[0] = "Super CD G discs are compatible to PC with Windows (95, 98, ME, 2000, XP) and a DVD-ROM drive. Simply insert the disc, and play hundreds and thousands of Karaoke songs right in your PC.
Main features:
- Pitch and Tempo Controls
- Equalizer with 8-Frequency blocks and Auto-Adjustment pre-amplifier
- Resizable CDG (Lyric Display) Screen
- On-screen Song List with Sort by Title, Singer, and Song Number
- Volume, Browse, and Pause Controls
- Voice Cancel (L, R, Stereo Channels)
- Repeat Off / One / All songs.
- Direct Key Controls
- Display of Remaining Time, Song Number, Progress Bar, and Setting Status";
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 = '';
}
}