var fDesc=new Array();
fDesc[0] = "Rea method formulas are in interactive form for learning and testing the learnt skills.
Rea method application consists of formulas that interactively elaborate specific musical phenomena concerning:
1. Relative intonation (major, minor and chords)
- numeric (major and minor tonality in octave and fifth positions)
- notational (all major and minor tonalities in octave and fifth positions, extended formulas, major and minor triads and inversions)
2. Absolute intonation
- monophony
- intervals
- chords (triads and inversions, seventh chords and inversions)";
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 = '';
}
}