var fDesc=new Array();
fDesc[0] = "Mastering Music™ is a suite of e-learning education software programs covering all aspects of the music curriculum – performing, composing and appraising (listening).
The programs comprise a series of over 400 self-paced multi-task lessons working in an integrated environment delivering musical outcomes in performance, composition, notation, digital audio, aural training, music theory and film scoring.
Main features:
-Achieves musical outcomes in one single integrated product (equals 5 or 6 other products)
-Provides over 400 lessons across all areas of music for ages 11-18
-Contains help pages and video tutorials to guide students through each lesson
-Addresses a varied range of student abilities in one class by using self-paced lessons with increasing levels of difficulty
-Records student performances while tracking their progress
-Includes Class Management Software to produce student and class reports";
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 = '';
}
}