var fDesc=new Array();
fDesc[0] = "Neuratron PhotoScore is a printed and handwritten (Ultimate version only) music recognition program - the musical equivalent of a text OCR program.
PhotoScore Ultimate picks out virtually every detail and even recognizes 4 and 6 line guitar tablature, 1, 2 and 3 line percussion staves. It is the world's first and only commercial program available that is also designed to read handwritten scores.
Ease-of-use has been a central design aim right from the start, and with automatic scanning and recognition, plus licensed Sibelius-style editing interfaces, PhotoScore Ultimate even becomes fun and exciting to use!";
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 = '';
}
}