var fDesc=new Array();
fDesc[0] = "When hear the word "waltz", you don't often think of hard rockin' guitars, but 3:4 (or 6:8) time has become an important part of the hard rock world. With RealTracks Set 67, you get 10 different Rock and Pop 3:4 styles.
These styles can be used individually, or together to create a full background to your waltz song. They can also be combined in A-B combinations, to give your song the dynamic shaping it needs. Also included for the first time are 12-string acoustic guitar RealTracks, both a picking style, and a strumming style";
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 = '';
}
}